.root-4dbcba6 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.item-4dbcba6 {
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-bg-card);
  overflow: hidden;
}

.trigger-4dbcba6 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0.75rem 1rem;
}

.trigger-4dbcba6:hover {
  background: var(--color-bg-muted);
}

.trigger-4dbcba6:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.header-4dbcba6 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.title-4dbcba6 {
  font-weight: 600;
  color: var(--color-text);
}

.meta-4dbcba6 {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.icon-4dbcba6 {
  font-size: 0.7rem;
  opacity: 0.85;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

.icon-4dbcba6[data-open="true"] {
  transform: rotate(0deg);
}

.body-4dbcba6 {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.22s ease, opacity 0.18s ease;
}

.body-4dbcba6[data-open="true"] {
  max-height: 80rem;
  opacity: 1;
}

.bodyInner-4dbcba6 {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--color-card-border);
}

.root-77b3ff9 {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  overflow: hidden;
  background: var(--color-cta);
  color: var(--color-accent-text);
  font-weight: 600;
  line-height: 1;
}

.sm-77b3ff9 {
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
}

.md-77b3ff9 {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.875rem;
}

.lg-77b3ff9 {
  width: 4rem;
  height: 4rem;
  font-size: 1.125rem;
}

.image-77b3ff9 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.initials-77b3ff9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}


.wrap-a573d68 {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.logo-a573d68 {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  object-fit: contain;
}

.productName-a573d68 {
  font-size: 1.125rem;
}


/* Base button – shared layout and focus */
.base-b228d8c {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
}

.base-b228d8c:focus-visible {
  box-shadow: var(--focus-ring-button);
}

.base-b228d8c:disabled,
.base-b228d8c[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Styles — variants live in button_variants.module.css */
.disabled-b228d8c {
  color: var(--color-button-disabled-text);
  background: var(--color-button-disabled-bg);
  cursor: not-allowed;
}

.icon-b228d8c {
  color: var(--color-text-on-dark-muted);
  background: transparent;
}

.icon-b228d8c:hover:not(:disabled) {
  color: var(--color-text-on-dark);
  background: var(--color-interactive-hover-on-dark);
}

/* Sizes */
.extraSmall-b228d8c {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  min-height: 2rem;
}

.small-b228d8c {
  padding: 0.5rem 0.75rem;
  font-size: var(--text-sm);
  min-height: 2.5rem;
}

.baseSize-b228d8c {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  min-height: 2.75rem;
}

.large-b228d8c {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  min-height: 3rem;
}

.extraLarge-b228d8c {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  min-height: 3.5rem;
}

/* Icon-only (square) sizing when icon style */
.icon-b228d8c.extraSmall-b228d8c,
.icon-b228d8c.small-b228d8c {
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.5rem;
}

.icon-b228d8c.baseSize-b228d8c {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem;
}

.icon-b228d8c.large-b228d8c,
.icon-b228d8c.extraLarge-b228d8c {
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem;
}


/* Shared button color variants — imported by button and mutation_action_button. */
.standard-d5ac25a {
  color: var(--color-accent-text);
  background: var(--color-accent);
}

.standard-d5ac25a:hover:not(:disabled):not([aria-disabled="true"]) {
  background: var(--color-accent-hover);
}

.alternative-d5ac25a {
  color: var(--color-text-main);
  background: var(--color-button-alt-bg);
  border: 1px solid var(--color-button-alt-border);
}

.alternative-d5ac25a:hover:not(:disabled):not([aria-disabled="true"]) {
  background: var(--color-button-alt-hover);
}

.callToAction-d5ac25a {
  color: var(--color-accent-text);
  background: var(--color-cta);
}

.callToAction-d5ac25a:hover:not(:disabled):not([aria-disabled="true"]) {
  background: var(--color-cta-hover);
}

.danger-d5ac25a {
  color: var(--color-accent-text);
  background: var(--color-danger);
}

.danger-d5ac25a:hover:not(:disabled):not([aria-disabled="true"]) {
  background: var(--color-danger-hover);
}


/* Matches old Card: bg-white dark:bg-gray-800, rounded-lg, border, shadow, padding */
.root-e643a9e {
  width: 100%;
  background: var(--color-card-bg);
  color: var(--color-text-main);
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  box-shadow: var(--color-card-shadow);
  padding: 0.5rem;
  /* p-2 on small screens */
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .root-e643a9e {
    padding: 1.5rem;
  }
}

/* Min-height so content starts at same vertical position with or without title actions */
.titleRow-e643a9e {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  min-width: 0;
  min-height: 2.25rem;
}

.title-e643a9e {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin: 0;
}

/* When the card has actions but no title text, the row still needs a flex sibling. */
.titleSpacer-e643a9e {
  flex: 1;
  min-width: 0;
}

.titleContent-e643a9e {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
}

.titleActions-e643a9e {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Ensure spacing remains visible even when actions are wrapped inside a child container. */
.titleActions-e643a9e :where(button, a, [role="button"])+ :where(button, a, [role="button"]) {
  margin-left: 0.5rem;
}

.titleActionsError-e643a9e {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.content-e643a9e {
  display: flex;
  flex-direction: column;
  min-width: 0;
  container-type: inline-size;
}

/* Default vertical spacing between arbitrary card children. */
.root-e643a9e[data-fill-height="false"] .content-e643a9e>*+* {
  margin-top: 1rem;
}

/* Tighter spacing specifically for adjacent panels inside a card (all card modes). */
.content-e643a9e>[data-panel="true"]+[data-panel="true"] {
  margin-top: 0.5em;
}

/* When card fills height (e.g. document editor), card fills container and content scrolls internally */
.root-e643a9e[data-fill-height="true"] {
  flex: 1 1 0;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.root-e643a9e[data-fill-height="true"] .content-e643a9e {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* vSplit list column: never taller than the column, pass height to inner `Table` scrollports */
.root-e643a9e[data-list-in-column="true"] {
  min-height: 0;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Use 0 1 auto (not 1 1 0) so the card can size to its table: with height:auto a flex:1/1/0
   child in a flex column can resolve to 0 and hide the list body entirely. */
.root-e643a9e[data-list-in-column="true"] .content-e643a9e {
  flex: 0 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* CardMessage: min height fits content + 1rem top/bottom; expands to fill when in empty card. */

.root-8c27e33 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  flex: 1 1 auto;
  width: 100%;
  padding: 1rem;
  border: 1px dashed var(--color-card-border);
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: var(--color-text-main);
}

.rootInfo-8c27e33 {
  color: var(--color-text-main);
}

.rootError-8c27e33 {
  border-color: var(--color-danger);
  color: var(--color-danger);
}

.rootWarning-8c27e33 {
  border-color: var(--color-warning-banner);
  color: var(--color-warning-banner);
}


/* Replaces center_card_alone.html: full-height main, centered card, top-right buttons */
.main-e5c0e6c {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-main);
  color: var(--color-text-main);
}

.inner-e5c0e6c {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

@media (min-width: 640px) {
  .inner-e5c0e6c {
    justify-content: center;
  }
}

.topButtons-e5c0e6c {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.centerColumn-e5c0e6c {
  display: flex;
  flex-direction: column;
  align-self: center;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 0;
  width: 100%;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .centerColumn-e5c0e6c {
    width: auto;
    margin-bottom: 12rem;
  }
}

.logoWrap-e5c0e6c {
  display: none;
}

@media (min-width: 640px) {
  .logoWrap-e5c0e6c {
    display: block;
  }
}

.logoLink-e5c0e6c {
  text-decoration: none;
  color: inherit;
}

.pageTitle-e5c0e6c {
  margin: 0 0 0.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-text-main);
}

@media (min-width: 640px) {
  .pageTitle-e5c0e6c {
    font-size: 2.25rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }
}

.cardWrap-e5c0e6c {
  width: 100%;
  max-width: 42rem;
  margin-top: 1px;
  background: var(--color-card-bg);
  color: var(--color-text-main);
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  box-shadow: var(--color-card-shadow);
  padding: 0.5rem; /* p-2 on small screens */
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .cardWrap-e5c0e6c {
    padding: 1.5rem;
  }
}

.cardIcon-e5c0e6c {
  margin-bottom: 1rem;
  width: 100%;
  color: var(--color-text-muted);
  fill: currentColor;
}

.cardIcon-e5c0e6c svg {
  width: 100%;
  height: auto;
  max-height: 12rem;
}

.cardIcon-e5c0e6c:empty {
  display: none;
}

.cardContent-e5c0e6c {
  /* Content slot */
}

.messageBlock-e5c0e6c {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.messageBlockCentered-e5c0e6c {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}


.root-293505b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.rootDisabled-293505b {
  cursor: not-allowed;
  opacity: 0.7;
}

.input-293505b {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--color-brand-600);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  cursor: inherit;
}

.input-293505b:focus-visible {
  outline: 2px solid var(--color-brand-500);
  outline-offset: 2px;
}

.labelText-293505b {
  color: var(--color-text-default);
  font-size: 0.875rem;
  line-height: 1.25rem;
}


/* Compact form controls for dense admin tables (shared by admin keys/credentials/attestation pages). */
.select-420b45a {
  max-width: 100%;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-card-bg);
  color: var(--color-text-main);
  font-size: var(--text-sm);
}

.textInput-420b45a {
  max-width: 100%;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-card-bg);
  color: var(--color-text-main);
  font-size: var(--text-sm);
}

.input-420b45a {
  composes: textInput;
}


.dateOnly-309587e {
  display: inline-block;
  white-space: nowrap;
}

.stacked-309587e {
  display: inline-flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1.2;
}

.dateLine-309587e {
  white-space: nowrap;
}

.timeLine-309587e {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  white-space: nowrap;
}

.timeOnly-309587e {
  display: inline-block;
  white-space: nowrap;
}

.rangeInline-309587e {
  display: inline;
  white-space: normal;
}


.wrap-c53862b {
  position: relative;
  width: 100%;
  min-width: 0;
}

.fieldLabel-c53862b {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.inputRow-c53862b {
  position: relative;
  display: flex;
  align-items: center;
}

.iconLeft-c53862b {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-muted, var(--color-text-main));
  display: flex;
  align-items: center;
}

.textInput-c53862b {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0.75rem 0.5rem 2.25rem;
  font-size: 1rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  cursor: pointer;
}

.textInput-c53862b:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.popover-c53862b {
  position: absolute;
  z-index: 50;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 17rem;
  max-width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-bg-main);
  box-shadow: var(--shadow-popover);
}

.monthBar-c53862b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.monthTitle-c53862b {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.navBtn-c53862b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.4rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.35rem;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  cursor: pointer;
}

.navBtn-c53862b:hover {
  background: var(--color-bg-muted);
}

.weekdays-c53862b {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  margin-bottom: 0.15rem;
}

.weekday-c53862b {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-text-muted, var(--color-text-main));
}

.grid-c53862b {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
}

.cellBtn-c53862b {
  padding: 0.35rem 0;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  background: transparent;
  font-size: 0.85rem;
  color: var(--color-text-main);
  cursor: pointer;
}

.cellBtn-c53862b:hover {
  background: var(--color-bg-muted);
}

.cellMuted-c53862b {
  color: var(--color-text-muted);
  cursor: default;
}

.cellMuted-c53862b:hover {
  background: transparent;
}

.cellSelected-c53862b {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

.cellSelected-c53862b:hover {
  background: var(--color-accent-strong);
  color: var(--color-accent-text);
}

.cellOutside-c53862b {
  opacity: 0.45;
}


/* Definition list for key-value detail panels (replaces Tailwind space-y-2, font-medium, etc.) */
.root-fd7020a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.row-fd7020a {
  margin: 0;
}

.term-fd7020a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0 0 0.125rem 0;
}

.detail-fd7020a {
  color: var(--color-text-main);
  margin: 0;
}

.valueLink-fd7020a {
  color: var(--color-link, var(--color-text-main));
  text-decoration: underline;
}

.actions-fd7020a {
  margin-top: 1rem;
}

.actionsError-fd7020a {
  margin-top: 1rem;
}


.button-cc709d5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}

.button-cc709d5:focus-visible {
  outline: 2px solid var(--focus-ring, currentColor);
  outline-offset: 2px;
}

.starBookmarked-cc709d5 {
  color: var(--color-bookmark-active);
}

.starInactive-cc709d5 {
  color: var(--color-text-muted);
  opacity: 0.55;
}


/* Placeholder while the document PDF preview PNG loads — matches table_skeleton card + shimmer. */

.root-9eac8f1 {
  position: relative;
  width: 12.5rem;
  max-width: 100%;
  min-height: 11rem;
  box-sizing: border-box;
  border-radius: 0.5rem;
  border: 1px solid var(--color-card-border);
  box-shadow: var(--color-card-shadow);
  background: var(--color-card-bg);
  overflow: hidden;
  animation: skeletonRootPulse 2.2s ease-in-out infinite;
}

/* Fills a `position: relative` parent (e.g. preview link) while the image loads underneath. */
.rootOverlay-9eac8f1 {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
}

.shimmer-9eac8f1 {
  position: absolute;
  inset: 0.35rem;
  border-radius: 0.35rem;
  background: linear-gradient(
    90deg,
    var(--color-card-bg) 0%,
    var(--color-button-alt-hover) 50%,
    var(--color-card-bg) 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.srOnly-9eac8f1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

@keyframes skeletonShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes skeletonRootPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.97;
  }
}


/* Drawer surface — Flowbite-inspired but plain CSS (no JS, no utility framework).
   Sits above modals (z-index 9999) so the bottom drawer stays accessible while modals are open. */
.root-dfd2cb4 {
  position: fixed;
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-drawer);
  transition: transform 0.3s ease-in-out;
  box-sizing: border-box;
  pointer-events: auto;
  visibility: hidden;
}

.root-dfd2cb4[data-open="true"],
.rootOpen-dfd2cb4 {
  visibility: visible;
}

/* Bottom drawer: full width across the page, capped height. */
.placementBottom-dfd2cb4 {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 60vh;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  transform: translateY(100%);
}

.rootOpen-dfd2cb4.placementBottom-dfd2cb4 {
  transform: translateY(0);
}

.placementTop-dfd2cb4 {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 60vh;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  transform: translateY(-100%);
}

.rootOpen-dfd2cb4.placementTop-dfd2cb4 {
  transform: translateY(0);
}

.placementLeft-dfd2cb4 {
  top: 0;
  bottom: 0;
  left: 0;
  width: min(420px, 90vw);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  transform: translateX(-100%);
}

.rootOpen-dfd2cb4.placementLeft-dfd2cb4 {
  transform: translateX(0);
}

.placementRight-dfd2cb4 {
  top: 0;
  bottom: 0;
  right: 0;
  width: min(420px, 90vw);
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  transform: translateX(100%);
}

.rootOpen-dfd2cb4.placementRight-dfd2cb4 {
  transform: translateX(0);
}

.backdrop-dfd2cb4 {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer-backdrop);
  background: var(--color-overlay);
}

.header-dfd2cb4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-card-border);
  flex-shrink: 0;
}

.title-dfd2cb4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.4;
}

.closeButton-dfd2cb4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--color-nav-icon);
  cursor: pointer;
  border-radius: 0.375rem;
  padding: 0;
  font-size: 1rem;
}

.closeButton-dfd2cb4:hover {
  background: var(--color-dropdown-item-hover);
  color: var(--color-text-main);
}

.closeButton-dfd2cb4:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.body-dfd2cb4 {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.75rem 1rem 1rem 1rem;
}


/* Optional label row: label styles in form_field.module.css */
.fieldRow-5450517 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
}

/* Wrapper: relative for dropdown positioning */
.wrapper-5450517 {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Invisible overlay to close dropdown on outside click */
.overlay-5450517 {
  position: fixed;
  inset: 0;
  z-index: var(--z-dropdown-overlay);
  background: transparent;
  display: none;
}

.overlayVisible-5450517 {
  display: block;
}

/* Trigger: form-control-like button with label and chevron */
.trigger-5450517 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  color: var(--color-text-main);
  background: var(--color-bg-main);
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  width: 100%;
  min-width: 10rem;
}

.trigger-5450517:hover {
  background: var(--color-dropdown-item-hover);
}

.trigger-5450517:focus-visible {
  box-shadow: 0 0 0 2px var(--color-dropdown-border);
}

.triggerDisabled-5450517 {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.triggerLabel-5450517 {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chevron-5450517 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.chevron-5450517[data-open="false"] {
  transform: rotate(-90deg);
}

.chevron-5450517[data-open="true"] {
  transform: rotate(0deg);
}

/* Dropdown panel */
.panel-5450517 {
  position: absolute;
  z-index: var(--z-dropdown-panel);
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0.25rem;
  min-width: 100%;
  padding: 0.25rem 0;
  background: var(--color-dropdown-bg);
  border: 1px solid var(--color-dropdown-border);
  border-radius: 0.375rem;
  box-shadow: var(--shadow-dropdown);
  max-height: 16rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-5450517[data-open="false"] {
  display: none;
}

/* Viewport-anchored panel (escapes overflow: auto scroll wrappers, e.g. table cells). */
.panelFixed-5450517 {
  position: fixed;
  z-index: var(--z-dropdown-panel-fixed);
  left: auto;
  right: auto;
  top: auto;
  margin-top: 0;
  min-width: unset;
}

.searchWrap-5450517 {
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid var(--color-dropdown-border);
}

.searchInput-5450517 {
  width: 100%;
  padding: 0.375rem 0.5rem;
  font-size: var(--text-sm);
  border: 1px solid var(--color-dropdown-border);
  border-radius: 0.25rem;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  box-sizing: border-box;
}

.searchInput-5450517::placeholder {
  color: var(--color-text-muted);
}

.clearAll-5450517 {
  display: block;
  width: 100%;
  padding: 0.375rem 1rem;
  font-size: var(--text-sm);
  text-align: left;
  color: var(--color-text-main);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-dropdown-border);
  cursor: pointer;
  box-sizing: border-box;
}

.clearAll-5450517:hover {
  background: var(--color-dropdown-item-hover);
}

.menu-5450517 {
  outline: none;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  max-height: min(40vh, 16rem);
}

/* Fixed action below the scrollable option list */
.footerAction-5450517 {
  flex-shrink: 0;
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: left;
  color: var(--color-text-main);
  background: var(--color-dropdown-bg);
  border: none;
  border-top: 1px solid var(--color-dropdown-border);
  cursor: pointer;
  box-sizing: border-box;
}

.footerAction-5450517:hover {
  background: var(--color-dropdown-item-hover);
}

.footerActionDanger-5450517 {
  color: var(--color-error);
}

.menuItem-5450517 {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  text-align: left;
  color: var(--color-text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.menuItem-5450517:hover {
  background: var(--color-dropdown-item-hover);
}

.menuItemActive-5450517 {
  font-weight: 600;
  background: var(--color-dropdown-item-active-bg);
}

.menuItemFocused-5450517 {
  background: var(--color-dropdown-item-hover);
}

.menuItemContent-5450517 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.checkIcon-5450517 {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}


.firstCellInner-c7e212a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.firstCellContent-c7e212a {
  flex: 1 1 auto;
  min-width: 0;
}

.toggle-c7e212a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  border-radius: 0.25rem;
  cursor: pointer;
}

.toggle-c7e212a:hover {
  background: var(--color-bg-muted);
  color: var(--color-text);
}

.toggle-c7e212a:focus-visible {
  outline: 2px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.chevron-c7e212a {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.chevronOpen-c7e212a {
  transform: rotate(90deg);
}

.drawer-c7e212a {
  background: var(--color-bg-card-alt, var(--color-bg-card));
}

.drawer-c7e212a:hover {
  background: var(--color-bg-card-alt, var(--color-bg-card));
}

.drawerCell-c7e212a {
  padding: 0;
  border-top: none;
}

.drawerInner-c7e212a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.22s ease, opacity 0.18s ease;
}

.drawerInner-c7e212a[data-open="true"] {
  max-height: 60rem;
  opacity: 1;
}

.drawerBody-c7e212a {
  padding: 0.5rem 0.75rem 0.75rem;
  border-top: 1px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


/* Shared form field label styles — used by input, textarea, and dropdown. */
.label-cc142a4 {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.labelNoMargin-cc142a4 {
  composes: label;
  margin-bottom: 0;
}

.labelRequired-cc142a4 {
  color: var(--color-error);
}


/* Responsive form row: side-by-side when wide, stacked when narrow.
   Breakpoint at 36rem so type+subtype reflow to one row when there is room.
   Full width so in narrow (stacked) view inputs span the card. */
.row-26ef3c0 {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
}

.row-26ef3c0 > * {
  flex: 1 1 12rem;
  min-width: 0;
}

@media (max-width: 36rem) {
  .row-26ef3c0 {
    flex-direction: column;
    align-items: stretch;
  }

  .row-26ef3c0 > * {
    flex: 1 1 100%;
    width: 100%;
  }
}


/* Icon link: neutral styling like theme toggle / language selector, compact for inline use */
.link-8ebeaac {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  color: var(--color-nav-icon);
  background: transparent;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

.link-8ebeaac:hover {
  color: var(--color-text-main);
  background: var(--color-nav-icon-hover);
}

.link-8ebeaac:focus-visible {
  box-shadow: 0 0 0 2px var(--color-border-on-dark);
}

.icon-8ebeaac {
  width: 1.125rem;
  height: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.items-5c5d393 {
  display: flex;
  gap: 0.75rem;
  min-width: 0;
}

.items-5c5d393[data-layout="column"] {
  flex-direction: column;
}

.items-5c5d393[data-layout="flex-wrap"] {
  flex-direction: row;
  flex-wrap: wrap;
}

.items-5c5d393[data-layout="two-column"] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.item-5c5d393 {
  min-width: 0;
}

/* Optional content below the info grid (e.g. action buttons) */
.footer-5c5d393 {
  margin-top: 1rem;
  min-width: 0;
}


/* Form input; label styles in form_field.module.css */
.input-8ad99c2 {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-main);
  color: var(--color-text-main);
  box-sizing: border-box;
}

.input-8ad99c2::placeholder {
  color: var(--color-text-muted);
}

.inputRow-8ad99c2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
}

.errorMessage-8ad99c2 {
  font-size: var(--text-sm);
  color: var(--color-error);
  margin-top: 0.125rem;
}

/* Native select; same look as .input for consistency */
.select-8ad99c2 {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-main);
  color: var(--color-text-main);
  box-sizing: border-box;
}

.formGroup-8ad99c2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}


/* Wrapper: relative for dropdown positioning */
.wrapper-3a2c97f {
  position: relative;
  display: inline-block;
}

/* Invisible overlay to close dropdown on outside click */
.overlay-3a2c97f {
  position: fixed;
  inset: 0;
  z-index: var(--z-dropdown-overlay);
  background: transparent;
  display: none;
}

.overlayVisible-3a2c97f {
  display: block;
}

/* Trigger: same as DarkModeButton / theme toggle */
.trigger-3a2c97f {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  color: var(--color-nav-icon);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  outline: none;
}

.trigger-3a2c97f:hover {
  background: var(--color-nav-icon-hover);
}

.trigger-3a2c97f:focus-visible {
  box-shadow: 0 0 0 2px var(--color-border-on-dark);
}

.triggerIcon-3a2c97f {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .trigger-3a2c97f {
    width: 3rem;
    height: 3rem;
  }
}

/* Dropdown panel: matches old LanguageButton dropdown */
.dropdown-3a2c97f {
  position: absolute;
  z-index: var(--z-dropdown-panel);
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  min-width: 12rem;
  padding: 0.25rem 0;
  background: var(--color-dropdown-bg);
  border: 1px solid var(--color-dropdown-border);
  border-radius: 0.375rem;
  box-shadow: var(--shadow-dropdown);
}

.dropdown-3a2c97f[data-open="false"] {
  display: none;
}

.menu-3a2c97f {
  outline: none;
}

.menuItem-3a2c97f {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-align: left;
  color: var(--color-text-main);
  background: transparent;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.menuItem-3a2c97f:hover {
  background: var(--color-dropdown-item-hover);
}

.menuItemActive-3a2c97f {
  font-weight: 600;
  background: var(--color-dropdown-item-active-bg);
}

.menuItemContent-3a2c97f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.checkIcon-3a2c97f {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}


/* Layout root: fixed viewport height so the window never scrolls; only main/sidebar content scrolls */
.root-effbfed {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.topStrip-effbfed {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.navBar-effbfed {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: var(--color-bg-nav);
  color: var(--color-text-on-dark);
  position: relative;
  z-index: 40;
  border-bottom: 1px solid var(--color-card-border);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.mainWithSide-effbfed {
  display: flex;
  flex: 1;
  min-height: 0;
  position: relative;
}

.sidePanel-effbfed {
  flex-shrink: 0;
  width: 16rem;
  background: var(--color-bg-sidebar);
  color: var(--color-text-on-dark);
  overflow-y: auto;
}

.mainArea-effbfed {
  flex: 1;
  padding: 0;
  overflow: auto;
}


.lifecycleList-f4e2cf0 {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lifecycleListItem-f4e2cf0 {
  display: flex;
  align-items: center;
  gap: 0;
}

.lifecycleListItem-f4e2cf0[data-active="true"] {
  font-weight: 600;
}

.lifecycleIcon-f4e2cf0 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.5em;
  line-height: 1;
}

.lifecycleIcon-f4e2cf0 svg {
  width: 100%;
  height: 100%;
}

.lifecycleIconDone-f4e2cf0 {
  color: var(--color-success);
}

.lifecycleIconDone-f4e2cf0 svg,
.lifecycleIconDone-f4e2cf0 svg * {
  color: var(--color-success);
  stroke: var(--color-success);
}

.lifecycleIconTodo-f4e2cf0 {
  color: var(--color-text-muted);
}

.lifecycleIconTodo-f4e2cf0 svg,
.lifecycleIconTodo-f4e2cf0 svg * {
  color: var(--color-text-muted);
  stroke: var(--color-text-muted);
}

.lifecycleIconSuperseded-f4e2cf0 {
  color: var(--color-text-muted);
}

.lifecycleIconSuperseded-f4e2cf0 svg,
.lifecycleIconSuperseded-f4e2cf0 svg * {
  color: var(--color-text-muted);
  stroke: var(--color-text-muted);
}

.lifecycleIconObsolete-f4e2cf0 {
  color: var(--color-danger);
}

.lifecycleIconObsolete-f4e2cf0 svg,
.lifecycleIconObsolete-f4e2cf0 svg * {
  color: var(--color-danger);
  stroke: var(--color-danger);
}

.lifecycleStageLabel-f4e2cf0 {
  line-height: 1.25;
}

.lifecycleNextAction-f4e2cf0 {
  margin-top: 0.6rem;
}

.lifecycleApproverSection-f4e2cf0 {
  margin-top: 0.6rem;
}

.lifecycleApproverTitle-f4e2cf0 {
  margin: 0 0 0.25rem 0;
  font-weight: 600;
}

.lifecycleApproverList-f4e2cf0 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lifecycleApproverRow-f4e2cf0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.approverUserCell-f4e2cf0 {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.approverName-f4e2cf0 {
  line-height: 1.2;
}

.approverEmail-f4e2cf0 {
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.2;
}


/* Fixed to viewport; only the content wrapper scrolls when needed (e.g. long documents list). */
.area-8ab0ba0 {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0.5em;
  overflow: hidden;
  background: var(--color-bg-main);
}

/* Single scrollable slot: editor page fills it without scrolling; other pages scroll here */
.contentSlot-8ab0ba0 {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* Allow single fill-height child (e.g. editor card) to take full height */
  align-items: stretch;
}


/* Modal overlay and dialog – matches old Askama modal (backdrop-blur, card box). */
.root-a3611fd {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.rootHidden-a3611fd {
  display: none;
}

.backdrop-a3611fd {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal-backdrop);
  background: var(--color-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Layout only; Card inside provides border, shadow, background, padding.
   Stable width (min(36rem, 95vw)) so opening a dropdown does not cause reflow.
   Narrow viewports: modal uses most horizontal space (95vw). */
.dialogBox-a3611fd {
  position: relative;
  width: min(36rem, 95vw);
  margin: 0 1rem;
  z-index: var(--z-modal);
  overflow: visible;
}

.message-a3611fd {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Wrapper for modal body content: gap between form fields, messages, etc.
   Overflow visible so dropdown panels (e.g. document type, sub-type) are not clipped.
   Full width so stacked inputs in narrow view span the card. */
.bodyContent-a3611fd {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: visible;
  width: 100%;
  min-width: 0;
}

.bodyContent-a3611fd > * {
  min-width: 0;
}

.actionError-a3611fd {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

/* Above dropdown overlays (z-index 40) so confirm/cancel buttons receive clicks when a dropdown was just closed */
.footer-a3611fd {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  position: relative;
  z-index: var(--z-modal-footer);
}


/* Inline with theme standard button (see button.module.css). */
.root-b1d2200 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
}

.root-b1d2200:focus-visible {
  box-shadow: var(--focus-ring-button);
}

.root-b1d2200:disabled,
.root-b1d2200[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}

.inner-b1d2200 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.successIcon-b1d2200 {
  display: inline-flex;
  color: var(--color-success);
  align-items: center;
}

.successIcon-b1d2200 svg {
  width: 1.15rem;
  height: 1.15rem;
}

.controlWrap-b1d2200 {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Body: colors & type only (position comes from .hintPopoverVisible or inline fixed layout). */
.hintPopover-b1d2200 {
  box-sizing: border-box;
  margin: 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-main);
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  box-shadow: var(--color-card-shadow);
  text-align: start;
  cursor: default;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-height: min(40vh, 16rem);
  overflow-y: auto;
}

.hintPopoverVisible-b1d2200 {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  margin-top: 0.35rem;
  z-index: 100;
  min-width: min(100%, 12rem);
  width: max-content;
  max-width: min(22rem, calc(100dvw - 1rem));
}

.hintPopoverHidden-b1d2200 {
  display: none;
}


.bar-46caaea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  padding: 0.375rem 0.75rem;
  min-height: 2.5rem;
  background: var(--color-bg-nav);
  color: var(--color-text-on-dark);
  flex-shrink: 0;
}

.left-46caaea {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggleWrapper-46caaea {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .toggleWrapper-46caaea {
    display: none;
  }
}

.branding-46caaea {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.right-46caaea {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.notificationLink-46caaea {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.25rem;
  border-radius: 0.25rem;
  color: inherit;
  text-decoration: none;
}

.notificationLink-46caaea:hover {
  background: var(--color-interactive-hover-on-dark);
}

.notificationLink-46caaea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.notificationBadge-46caaea {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  box-sizing: border-box;
  font-size: 0.65rem;
  line-height: 1rem;
  text-align: center;
  border-radius: 999px;
  background: var(--color-danger-bg);
  color: var(--color-text-on-dark);
}

/* Shared list / detail / form layout patterns. */

.panelStack-67ac79f {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.panelStack-67ac79f[data-tight="true"] {
  gap: 0;
}

.panelStack-67ac79f[data-tight="true"] > * + * {
  margin-top: 0.5em;
}

/* Common detail card column: matches former pages `detailPanels` / documents vsplit. */
.panelStack-67ac79f[data-document-detail-gap="true"] {
  gap: 0.5em;
}

/* Avoid double margin with child panels when using document-detail column gap. */
.panelStack-67ac79f[data-document-detail-gap="true"] [data-panel="true"] {
  margin: 0;
}

.listCardBody-67ac79f {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}

.listCardBody-67ac79f[data-list-grow="true"] {
  /* Same as list card: avoid flex-basis 0 collapse when the flex parent main size is auto. */
  flex: 0 1 auto;
}

.listCardBody-67ac79f[data-list-grow="false"] {
  flex: 0 1 auto;
}

.listCardTop-67ac79f {
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.listTableSection-67ac79f {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.listTableSection-67ac79f[data-list-grow="true"] {
  flex: 0 1 auto;
}

.listTableSection-67ac79f[data-list-grow="false"] {
  flex: 0 1 auto;
}

.actionRow-67ac79f {
  display: flex;
  gap: 0.5rem;
  min-width: 0;
  margin-top: 1rem;
}

.actionRow-67ac79f[data-margin-top="none"] {
  margin-top: 0;
}

.actionRow-67ac79f[data-margin-bottom="default"] {
  margin-bottom: 0.75rem;
}

.actionRow-67ac79f[data-margin-bottom="none"] {
  margin-bottom: 0;
}

.actionRow-67ac79f[data-gap="loose"] {
  gap: 1rem;
}

.actionRow-67ac79f[data-align="start"] {
  justify-content: flex-start;
}

.actionRow-67ac79f[data-align="end"] {
  justify-content: flex-end;
}

.actionRow-67ac79f[data-align="center"] {
  justify-content: center;
}

.actionRow-67ac79f[data-align="space-between"] {
  justify-content: space-between;
}

.actionRow-67ac79f[data-wrap="wrap"] {
  flex-wrap: wrap;
}

.actionRow-67ac79f[data-wrap="nowrap"] {
  flex-wrap: nowrap;
}

.fieldRow-67ac79f {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.fieldRowWithMargin-67ac79f {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}


/* Panel: subsection within a Card (e.g. Information, Delete). Muted background vs card. */
.root-dc2669b {
  width: auto;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  border-radius: 0.5rem;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0.5rem;
}

.titleRow-dc2669b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  min-width: 0;
}

.title-dc2669b {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-main);
  margin: 0;
}

.titleSpacer-dc2669b {
  flex: 1;
  min-width: 0;
}

.titleActions-dc2669b {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.helpIcon-dc2669b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-text-muted);
}

.content-dc2669b {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.root-137789e {
  min-width: 0;
}

.withAvatar-137789e {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.link-137789e {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.link-137789e:hover .linePrimary-137789e,
.link-137789e:hover .lineSecondary-137789e,
.link-137789e:focus-visible .linePrimary-137789e,
.link-137789e:focus-visible .lineSecondary-137789e {
  text-decoration: underline;
}

.linePrimary-137789e {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lineSecondary-137789e {
  display: block;
  min-width: 0;
  font-style: italic;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lineSecondaryCode-137789e {
  composes: lineSecondary;
  text-transform: uppercase;
}


.panel-599b862 {
  flex-shrink: 0;
  width: 16rem;
  background: var(--color-bg-sidebar);
  color: var(--color-text-on-dark);
  overflow-y: auto;
  transition: transform 0.2s, margin 0.2s;
  border-right: 1px solid var(--color-card-border);
  box-shadow: var(--color-card-shadow);
}

.panelHidden-599b862 {
  transform: translateX(-100%);
  margin-left: -16rem;
}

.linkList-599b862 {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.sectionDivider-599b862 {
  list-style: none;
  margin: 0.6rem 1rem;
  border-top: 1px solid var(--color-card-border);
}

/* Matches old SidebarItem: flex items-center pl-4 p-2 gap-2 */
.link-599b862 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  padding-left: 1rem;
  color: var(--color-text-on-dark-muted);
  text-decoration: none;
  border-left: 3px solid transparent;
}

.link-599b862:hover {
  background: var(--color-interactive-hover-on-dark);
  color: var(--color-text-on-dark);
}

.link-599b862:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.linkActive-599b862 {
  color: var(--color-text-on-dark);
  border-left-color: var(--color-accent);
  background: var(--color-interactive-hover-on-dark);
}

.linkIcon-599b862 {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-599b862 {
  list-style: none;
  margin: 0;
}

.dropdownToggle-599b862 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  padding-left: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-text-on-dark-muted);
  cursor: pointer;
  font: inherit;
  border-left: 3px solid transparent;
}

.dropdownToggle-599b862:hover {
  background: var(--color-interactive-hover-on-dark);
  color: var(--color-text-on-dark);
}

.dropdownToggle-599b862:focus-visible,
.nestedDropdownToggle-599b862:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.dropdownChevron-599b862 {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.6rem;
  opacity: 0.8;
  display: inline-block;
  transition: transform 0.2s ease;
}

.dropdownChevron-599b862[data-open="false"] {
  transform: rotate(-90deg);
}

.dropdownChevron-599b862[data-open="true"] {
  transform: rotate(0deg);
}

.subList-599b862 {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.15s ease;
}

.subList-599b862[data-open="true"] {
  max-height: 20rem;
  opacity: 1;
}

/* Administration L1: room for multiple nested L2 groups */
.subListAdminRoot-599b862[data-open="true"] {
  max-height: 100rem;
}

.nestedDropdown-599b862 {
  list-style: none;
  margin: 0;
}

.nestedDropdownToggle-599b862 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem 0.4rem 0.25rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-text-on-dark-muted);
  cursor: pointer;
  font: inherit;
  border-left: 3px solid transparent;
}

.nestedDropdownToggle-599b862:hover {
  background: var(--color-interactive-hover-on-dark);
  color: var(--color-text-on-dark);
}

.nestedSubList-599b862 {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.2s ease, opacity 0.15s ease;
}

.nestedSubList-599b862[data-open="true"] {
  max-height: 24rem;
  opacity: 1;
}

.overlay-599b862 {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: var(--z-dropdown-overlay);
  display: none;
}

.overlayVisible-599b862 {
  display: block;
}

@media (max-width: 767px) {
  .panel-599b862 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-dropdown-panel);
  }

  .linkList-599b862 {
    padding-top: 1rem;
  }
}

@media (min-width: 768px) {
  .panelHidden-599b862 {
    transform: none;
    margin-left: 0;
  }

  .overlayVisible-599b862 {
    display: none;
  }
}

/* Matches old ToggleSidebarButton: inline-flex, p-2, text-sm, rounded-lg, focus:ring-2 */
.toggle-7b2d429 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-nav-icon);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  outline: none;
}

.toggle-7b2d429:hover {
  background: var(--color-nav-icon-hover);
}

.toggle-7b2d429:focus-visible {
  box-shadow: 0 0 0 2px var(--color-border-on-dark);
}

.toggleIcon-7b2d429 {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.root-2e53f15 {
  display: inline-flex;
}

.button-2e53f15 {
  padding: 0.5rem 1rem;
  background: var(--color-cta);
  color: var(--color-accent-text);
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
}

.button-2e53f15:hover {
  background: var(--color-cta-hover);
}

.button-2e53f15:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}


/* Status spinner: animated ring + accent segment. Theme-driven colors. */
.root-1128f56 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.svg-1128f56 {
  display: block;
  width: 100%;
  height: 100%;
  animation: spin 0.7s linear infinite;
}

/* Track (muted ring) + accent segment use currentColor and fill on paths */
.pathTrack-1128f56 {
  fill: currentColor;
  opacity: 0.25;
}

.pathSpin-1128f56 {
  fill: var(--color-button-cta, var(--color-nav-icon));
  opacity: 1;
}

.sizeSm-1128f56 {
  width: 1.25rem;
  height: 1.25rem;
}

.sizeMd-1128f56 {
  width: 2rem;
  height: 2rem;
}

.sizeLg-1128f56 {
  width: 2.5rem;
  height: 2.5rem;
}

.srOnly-1128f56 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.root-8ca26f8 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.userWithAvatar-8ca26f8 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.userText-8ca26f8 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.primary-8ca26f8 {
  display: block;
  min-width: 0;
}

.secondary-8ca26f8 {
  display: block;
  min-width: 0;
}

.secondaryMuted-8ca26f8 {
  color: var(--color-text-muted);
}

.secondaryItalic-8ca26f8 {
  font-style: italic;
}

.secondaryTruncate-8ca26f8 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.itemName-8ca26f8 {
  display: block;
  color: var(--color-text-muted);
  font-style: italic;
  min-width: 0;
}

.itemValue-8ca26f8 {
  display: block;
  min-width: 0;
}


.root-c8075cf {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.1;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}

.root-c8075cf[data-tone="muted"] {
  color: var(--color-text-muted);
  background: var(--color-bg-main);
  border-color: var(--color-card-border);
}

.root-c8075cf[data-tone="info"] {
  color: var(--tone-info-fg);
  background: var(--tone-info-bg);
  border-color: var(--color-card-border);
}

.root-c8075cf[data-tone="success"] {
  color: var(--tone-success-fg);
  background: var(--tone-success-bg);
  border-color: var(--tone-success-border);
}

.root-c8075cf[data-tone="warning"] {
  color: var(--tone-warning-fg);
  background: var(--tone-warning-bg);
  border-color: var(--tone-warning-border);
}

.root-c8075cf[data-tone="danger"] {
  color: var(--tone-danger-fg);
  background: var(--tone-danger-bg);
  border-color: var(--tone-danger-border);
}


/* Flowbite-style table. Uses theme vars from theme.css. */

.root-76c1457 {
  position: relative;
  min-width: 0;
  background: var(--color-card-bg);
  color: var(--color-text-main);
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  box-shadow: var(--color-card-shadow);
  box-sizing: border-box;
}

/* Fills a flex parent (e.g. fill-height list card) so the scrollport can use remaining height */
.rootPaneFill-76c1457 {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}

/* vSplit list cards: table grows with few rows, caps at parent height; only then does tbody scroll */
.rootPaneContent-76c1457 {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 100%;
  flex: 0 1 auto;
  width: 100%;
  align-self: stretch;
  overflow: hidden;
}

/* Horizontal scroll only around the table so the toolbar (and its dropdowns) are not clipped */
.tableScroll-76c1457 {
  min-width: 0;
  overflow-x: auto;
}

/* Parent owns overflow (e.g. training matrix `.matrixTableScroll`); inner scrollport would break
   `position: sticky` on `thead th` relative to that parent. */
.tableScrollFlat-76c1457 {
  min-width: 0;
  overflow: visible;
}

.tableScrollResponsive-76c1457 {
  overflow-x: clip;
}

/* Vertical scroll + horizontal overflow (infinite-scroll / tall tables) */
.tableScrollViewport-76c1457 {
  overflow: auto;
  min-width: 0;
}

/* Grows to fill a flex parent when the table is the primary scroll area (left vSplit lists) */
.tableScrollFill-76c1457 {
  flex: 1 1 0;
  min-height: 0;
}

/* With rootPaneContent + use_inline_max_height false: scrolls when rows overflow; use 0/1/auto so
   height:auto parents do not collapse the scroll area to 0. */
.tableScrollPaneContent-76c1457 {
  flex: 0 1 auto;
  min-height: 0;
}

.table-76c1457 {
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
  color: var(--color-text-main);
  /* `separate` so `position: sticky` on `thead` works across browsers (collapse breaks sticky) */
  border-collapse: separate;
  border-spacing: 0;
}

/* Per-column alignment (defaults: first=left, last=right, interior=center) */
.alignLeft-76c1457 {
  text-align: left;
}

.alignCenter-76c1457 {
  text-align: center;
}

.alignRight-76c1457 {
  text-align: right;
}

/*
 * Responsive: progressively hide lower-priority interior columns.
 * Breakpoints are intentionally tight: @container uses the card/pane width (often
 * <1200px in split layouts), so large max-width values hid interior columns even
 * when the table still had room. Viewport @media uses the same tiers for consistency.
 */
@media (max-width: 720px) {
  .tableResponsive-76c1457 th[data-hide-order="1"],
  .tableResponsive-76c1457 td[data-hide-order="1"] {
    display: none;
  }
}

@media (max-width: 600px) {
  .tableResponsive-76c1457 th[data-hide-order="2"],
  .tableResponsive-76c1457 td[data-hide-order="2"] {
    display: none;
  }
}

@media (max-width: 480px) {
  .tableResponsive-76c1457 th[data-hide-order="3"],
  .tableResponsive-76c1457 td[data-hide-order="3"] {
    display: none;
  }
}

@media (max-width: 400px) {
  .tableResponsive-76c1457 th[data-hide-order]:not([data-hide-order=""]),
  .tableResponsive-76c1457 td[data-hide-order]:not([data-hide-order=""]) {
    display: none;
  }
}

/* Container-query variant for split panes and constrained cards. */
@container (max-width: 720px) {
  .tableResponsive-76c1457 th[data-hide-order="1"],
  .tableResponsive-76c1457 td[data-hide-order="1"] {
    display: none;
  }
}

@container (max-width: 600px) {
  .tableResponsive-76c1457 th[data-hide-order="2"],
  .tableResponsive-76c1457 td[data-hide-order="2"] {
    display: none;
  }
}

@container (max-width: 480px) {
  .tableResponsive-76c1457 th[data-hide-order="3"],
  .tableResponsive-76c1457 td[data-hide-order="3"] {
    display: none;
  }
}

@container (max-width: 400px) {
  .tableResponsive-76c1457 th[data-hide-order]:not([data-hide-order=""]),
  .tableResponsive-76c1457 td[data-hide-order]:not([data-hide-order=""]) {
    display: none;
  }
}

/* Toolbar above table (search + filters) */
.toolbar-76c1457 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-card-border);
  background: var(--color-button-alt-bg);
}

.toolbarMain-76c1457 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  flex: 1 1 auto;
  min-width: 14rem;
}

.toolbarFilters-76c1457 {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.toolbarSearch-76c1457 {
  min-width: 12rem;
  flex: 1 1 auto;
}

.toolbarSearchInput-76c1457 {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  box-sizing: border-box;
}

.toolbarSearchInput-76c1457::placeholder {
  color: var(--color-text-muted);
}

.toolbarFilter-76c1457 {
  min-width: 10rem;
}

.toolbarActions-76c1457 {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.toolbarActionsInline-76c1457 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
}

/* Wraps inline toolbar actions + refresh so refresh stays last */
.toolbarTrailing-76c1457 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}

/* On narrow viewports, keep refresh grouped with filters instead of isolated on a new line. */
@media (max-width: 1200px) {
  .toolbarSearch-76c1457 {
    min-width: 100%;
    flex: 1 1 100%;
  }

  .toolbarTrailing-76c1457 {
    margin-left: 0;
  }
}

.toolbarRefreshBtn-76c1457 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0.375rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  color: var(--color-text-main);
  background: var(--color-bg-main);
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
}

.toolbarRefreshBtn-76c1457:hover:not(:disabled) {
  background: var(--color-dropdown-item-hover);
}

.toolbarRefreshBtn-76c1457:focus-visible {
  box-shadow: 0 0 0 2px var(--color-accent);
}

.toolbarStacked-76c1457 .toolbarSearch-76c1457 {
  min-width: 100%;
  flex: 1 1 100%;
}

.toolbarStacked-76c1457 .toolbarFilters-76c1457 {
  width: 100%;
}

.scopedError-76c1457 {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-card-border);
  background: var(--color-card-bg);
}

.caption-76c1457 {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-main);
  text-align: left;
}

.thead-76c1457 {
  background: var(--color-button-alt-bg);
  border-bottom: 1px solid var(--color-card-border);
}

.thead-76c1457 tr {
  background: inherit;
}

/* Sticky table header: stays visible in the table scrollport */
.thSticky-76c1457 {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--color-button-alt-bg);
  background-clip: padding-box;
  box-shadow: 0 1px 0 var(--color-card-border);
}

.th-76c1457 {
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-card-border);
  vertical-align: bottom;
}

.headerSort-76c1457 {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.sortIcon-76c1457 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.125rem;
  border-radius: 0.25rem;
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--color-nav-icon);
  background: transparent;
}

.sortIcon-76c1457:hover {
  color: var(--color-text-main);
  background: var(--color-nav-icon-hover);
}

.sortIcon-76c1457:focus-visible {
  box-shadow: 0 0 0 2px var(--color-border-on-dark);
}

.tbody-76c1457 {
  /* Body container */
}

.tr-76c1457 {
  background: var(--color-card-bg);
}

.tr-76c1457 td {
  border-bottom: 1px solid var(--color-card-border);
}

.trHover-76c1457:hover {
  background: var(--color-button-alt-hover);
}

.trStriped-76c1457:nth-child(odd) {
  background: var(--color-card-bg);
}

.trStriped-76c1457:nth-child(even) {
  background: var(--color-button-alt-bg);
}

.trStriped-76c1457.trHover-76c1457:hover {
  background: var(--color-button-alt-hover);
}

.trSelected-76c1457 {
  background: var(--color-button-alt-hover);
}

.trSelected-76c1457.trHover-76c1457:hover {
  background: var(--color-button-alt-hover);
}

.td-76c1457 {
  padding: 1rem 1.5rem;
  color: var(--color-text-main);
  vertical-align: top;
}

.tfootRow-76c1457 td {
  border-bottom: none;
  padding: 0.75rem 1.5rem;
}

.loadMoreCell-76c1457 {
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid var(--color-card-border);
  background: var(--color-card-bg);
}

.loadMoreInner-76c1457 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.5rem;
}

.emptyCell-76c1457 {
  padding: 1rem 1.5rem;
  min-height: 3.5rem;
  text-align: center;
  color: var(--color-text-muted, var(--color-text-main));
}

.trClickable-76c1457 {
  cursor: pointer;
}


.docCell-d0a7caf {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.docNumber-d0a7caf {
  display: block;
}

.docName-d0a7caf {
  display: block;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text-muted);
}

.plain-d0a7caf {
  min-width: 0;
}


/* Table loading skeleton — Flowbite-style placeholders; uses theme.css tokens. */

.root-e7df869 {
  position: relative;
  min-width: 0;
  background: var(--color-card-bg);
  color: var(--color-text-main);
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  box-shadow: var(--color-card-shadow);
  box-sizing: border-box;
  animation: skeletonRootPulse 2.2s ease-in-out infinite;
}

.tableScroll-e7df869 {
  min-width: 0;
  overflow-x: auto;
}

.table-e7df869 {
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
  color: var(--color-text-main);
  border-collapse: collapse;
}

.thead-e7df869 {
  background: var(--color-button-alt-bg);
  border-bottom: 1px solid var(--color-card-border);
}

.th-e7df869 {
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.tbody-e7df869 {
  /* body container */
}

.skeletonRow-e7df869 {
  background: var(--color-card-bg);
  border-bottom: 1px solid var(--color-card-border);
}

.skeletonRow-e7df869:last-child {
  border-bottom: none;
}

.td-e7df869 {
  padding: 1rem 1.5rem;
  color: var(--color-text-main);
  vertical-align: middle;
}

/* Toolbar (matches table.module.css spacing) */
.toolbar-e7df869 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-card-border);
  background: var(--color-button-alt-bg);
}

.toolbarMain-e7df869 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  flex: 1 1 auto;
  min-width: 14rem;
}

.toolbarSearch-e7df869 {
  min-width: 12rem;
  flex: 1 1 auto;
}

.searchSkeleton-e7df869 {
  width: 100%;
  max-width: 20rem;
  min-height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(
    90deg,
    var(--color-button-alt-border) 0%,
    var(--color-surface-muted-on-dark) 50%,
    var(--color-button-alt-border) 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.toolbarFilters-e7df869 {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.toolbarFilter-e7df869 {
  min-width: 10rem;
}

.filterSkeleton-e7df869,
.pageSizeSkeleton-e7df869 {
  width: 100%;
  min-height: 2.5rem;
  min-width: 0;
  border-radius: 0.5rem;
  border: 1px solid var(--color-button-alt-border);
  background: linear-gradient(
    90deg,
    var(--color-card-bg) 0%,
    var(--color-button-alt-hover) 50%,
    var(--color-card-bg) 100%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.pageSizeSkeleton-e7df869 {
  min-width: 6.5rem;
  max-width: 10rem;
}

/* Generic pill bar inside table cells (Flowbite “rounded-full” look) */
.bar-e7df869 {
  display: block;
  height: 0.75rem;
  max-width: 100%;
  border-radius: 9999px;
  background: var(--color-button-alt-border);
  animation: skeletonBlockPulse 2s ease-in-out infinite;
}

.srOnly-e7df869 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

@keyframes skeletonShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes skeletonBlockPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.35;
  }
}

@keyframes skeletonRootPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.97;
  }
}


.textareaRow-a08efbb {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  min-width: 0;
}

.textarea-a08efbb {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-main);
  color: var(--color-text-main);
  box-sizing: border-box;
  resize: vertical;
  min-height: 5rem;
  font-family: inherit;
}

.textarea-a08efbb::placeholder {
  color: var(--color-text-muted);
}


/* Matches old DarkModeButton: flex, rounded-lg, h-11 w-11 sm:w-12 sm:h-12, p-2, no border */
.toggle-cb1fe72 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  color: var(--color-nav-icon);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  outline: none;
}

.toggle-cb1fe72:hover {
  background: var(--color-nav-icon-hover);
}

.toggle-cb1fe72:focus-visible {
  box-shadow: 0 0 0 2px var(--color-border-on-dark);
}

.toggleIcon-cb1fe72 {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .toggle-cb1fe72 {
    width: 3rem;
    height: 3rem;
  }
}


.wrap-375bd4f {
  position: relative;
  width: 100%;
  min-width: 0;
}

.fieldLabel-375bd4f {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 0.25rem;
}

.trigger-375bd4f {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  cursor: pointer;
}

.trigger-375bd4f:hover {
  background: var(--color-bg-muted);
}

.triggerMuted-375bd4f {
  color: var(--color-text-muted, var(--color-text-main));
}

.triggerRange-375bd4f {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rangeSep-375bd4f {
  flex: none;
}

.popover-375bd4f {
  position: absolute;
  z-index: 50;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 16rem;
  max-width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-bg-main);
  box-shadow: var(--shadow-popover);
}

.timeGrid-375bd4f {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.timeLabel-375bd4f {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: var(--color-text-main);
}

.timeInput-375bd4f {
  width: 100%;
  box-sizing: border-box;
  padding: 0.45rem 0.5rem;
  font-size: 0.95rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.4rem;
  background: var(--color-bg-main);
  color: var(--color-text-main);
}

.saveRow-375bd4f {
  display: flex;
  justify-content: flex-end;
}

.saveBtn-375bd4f {
  padding: 0;
  border: none;
  background: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  cursor: pointer;
  text-decoration: underline;
}

.saveBtn-375bd4f:hover {
  color: var(--color-accent-strong);
}


.root-90cbd1f {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.input-90cbd1f {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.track-90cbd1f {
  position: relative;
  width: 2.25rem;
  height: 1.25rem;
  background: var(--color-button-alt-bg);
  border: 1px solid var(--color-button-alt-border);
  border-radius: 9999px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}

.thumb-90cbd1f {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 1rem;
  height: 1rem;
  background: var(--color-toggle-off-thumb);
  border-radius: 9999px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.labelText-90cbd1f {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.trackChecked-90cbd1f {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.thumbChecked-90cbd1f {
  transform: translateX(1rem);
  background: var(--color-accent-text);
}

.input-90cbd1f:focus-visible + .track-90cbd1f {
  box-shadow: 0 0 0 2px var(--color-border-on-dark);
}

.input-90cbd1f:disabled + .track-90cbd1f {
  background: var(--color-button-disabled-bg);
  border-color: var(--color-button-disabled-bg);
}

.input-90cbd1f:disabled + .track-90cbd1f .thumb-90cbd1f {
  background: var(--color-button-disabled-text);
}

.root-90cbd1f:has(.input-90cbd1f:disabled) {
  cursor: not-allowed;
  opacity: 0.85;
}

.root-90cbd1f:has(.input-90cbd1f:disabled) .labelText-90cbd1f {
  color: var(--color-button-disabled-text);
}


.stepList-12a226f {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stepRow-12a226f {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stepIcon-12a226f {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.stepIconDone-12a226f {
  color: var(--color-success);
}

.stepIconPending-12a226f {
  color: var(--color-text-muted);
}

.stepLabel-12a226f {
  flex: 1;
}

.stepDetail-12a226f {
  margin: 0.25rem 0 0 1.6rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.errorMessage-12a226f {
  margin-top: 0.75rem;
  color: var(--color-danger);
}


.commitBar-edf176c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.commitInfo-edf176c {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.commitActions-edf176c {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.commitActions-edf176c > * + * {
  margin-left: 0.5em;
}

.planVersion-edf176c {
  font-weight: 700;
}

.planStatus-edf176c {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.planStatus-edf176c[data-dirty="true"] {
  color: var(--color-warning-700);
}

.commitMessage-edf176c {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.commitRecordContext-edf176c {
  flex-basis: 100%;
  width: 100%;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
}

.commitRecordContext-edf176c a {
  color: var(--color-link);
  text-decoration: underline;
}

.matrixToggle-edf176c {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-strong);
  /* Transparent so matrix row hover/stripe shows through when unassigned */
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
}

.matrixToggleAssigned-edf176c {
  background: var(--color-success-100);
  border-color: var(--color-success-500);
}

.matrixToggleSaving-edf176c {
  opacity: 0.7;
}

.matrixToggleError-edf176c {
  border-color: var(--color-danger-500);
  background: var(--color-danger-100);
}


.scroll-c56d546 {
  max-height: min(50vh, 22rem);
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  padding: 0.25rem 0.35rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-card-bg, transparent);
}

.ul-c56d546 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.item-c56d546 {
  padding: 0.35rem 0.25rem 0.55rem;
  border-bottom: 1px solid var(--color-card-border);
}

.item-c56d546:last-child {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.kind_row-c56d546 {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--color-text-main);
  margin-bottom: 0.2rem;
}

.details-c56d546 {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.detail_row-c56d546 {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-text-muted, var(--color-text-main));
  padding-left: 0.1rem;
}


.wrapper-379843b {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.avatarButton-379843b {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 9999px;
}

.avatarButton-379843b:focus-visible {
  outline: 2px solid var(--color-dropdown-border);
  outline-offset: 2px;
}

.overlay-379843b {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: transparent;
  display: none;
}

.overlayVisible-379843b {
  display: block;
}

.panel-379843b {
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
  min-width: 9rem;
  z-index: 50;
  background: var(--color-dropdown-bg);
  border: 1px solid var(--color-dropdown-border);
  border-radius: 0.375rem;
  box-shadow: var(--shadow-dropdown);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel-379843b[data-open="false"] {
  display: none;
}

.identityBlock-379843b {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid var(--color-dropdown-border);
}

.fullName-379843b {
  color: var(--color-text-main);
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 600;
}

.titlePosition-379843b {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.2;
}

.menuItem-379843b {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 0;
  background: transparent;
  color: var(--color-text-main);
  text-decoration: none;
  text-align: left;
  font-size: 0.875rem;
}

.menuItem-379843b:hover,
.menuItem-379843b:focus-visible {
  background: var(--color-dropdown-item-hover);
  outline: none;
}

.menuDivider-379843b {
  border: 0;
  border-top: 1px solid var(--color-dropdown-border);
  margin: 0.25rem 0;
  width: 100%;
}


/* No padding: main area provides 0.5rem so side spacing matches gap between cards */
.root-8fd4d39 {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  align-self: stretch;
  width: 100%;
  overflow: hidden;
}

/* No detail selected: list 60%, placeholder 40% */
.left-8fd4d39 {
  flex: 0 1 60%;
  min-width: 0;
  min-height: 12rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Content-sized columns (e.g. verify) — no forced min column height so cards can hug content. */
.root-8fd4d39[data-tight="true"] .left-8fd4d39 {
  min-height: 0;
}

.right-8fd4d39 {
  flex: 1 1 40%;
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Explicit wide-state panel visibility helps Safari re-evaluate after resize. */
.root-8fd4d39[data-detail-selected="false"] .left-8fd4d39 {
  display: flex;
  flex: 0 1 60%;
}

.root-8fd4d39[data-detail-selected="false"] .right-8fd4d39 {
  display: flex;
  flex: 1 1 40%;
}

/* Detail selected: list 40%, detail 60% */
.root-8fd4d39[data-detail-selected="true"] .left-8fd4d39 {
  display: flex;
  flex: 0 1 40%;
}

.root-8fd4d39[data-detail-selected="true"] .right-8fd4d39 {
  display: flex;
  flex: 1 1 60%;
}

/* Narrow: show only one panel */
@media (max-width: 1023px) {
  .root-8fd4d39 {
    flex-direction: column;
  }

  /* No detail selected: show only list, hide placeholder */
  .root-8fd4d39[data-detail-selected="false"] .right-8fd4d39 {
    display: none;
  }

  .root-8fd4d39[data-detail-selected="false"] .left-8fd4d39 {
    display: flex;
    flex: 1 1 auto;
  }

  /* Detail selected: show only detail, hide list */
  .root-8fd4d39[data-detail-selected="true"] .left-8fd4d39 {
    display: none;
  }

  .root-8fd4d39[data-detail-selected="true"] .right-8fd4d39 {
    display: flex;
    flex: 1 1 auto;
    min-height: 8rem;
  }
}
.helpText-41211e7 {
  margin: 0;
}

.userCell-41211e7 {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.userEmail-41211e7 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    overflow-wrap: anywhere;
}


.userContextRefreshError-3035fa3 {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--color-card-border);
}


.fieldLabel-35ef034 {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.revokeForm-35ef034 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.revokeHelp-35ef034 {
    margin: 0 0 0.5rem 0;
}

.helpText-35ef034 {
    margin-bottom: 0.75rem;
}

.panelDescription-35ef034 {
  margin: 0;
}

.adminDetailBlock-35ef034 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
}


.headline-fdc9382 {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
}

.compact-fdc9382 {
  gap: 0.35rem;
}

.iconBox-fdc9382 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--color-nav-icon-hover, rgba(0, 0, 0, 0.04));
  color: var(--color-text-muted);
  font-size: 1.25rem;
  line-height: 1;
}

.compact-fdc9382 .iconBox-fdc9382 {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.05rem;
  border-radius: 0.35rem;
}

.iconImg-fdc9382 {
  max-width: 2.25rem;
  max-height: 2.25rem;
  object-fit: contain;
  border-radius: 0.35rem;
}

.compact-fdc9382 .iconImg-fdc9382 {
  max-width: 1.75rem;
  max-height: 1.75rem;
}

.textBlock-fdc9382 {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.title-fdc9382 {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  word-break: break-word;
}

.compact-fdc9382 .title-fdc9382 {
  font-size: 0.88rem;
}

.subtitle-fdc9382 {
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--color-text-muted);
  word-break: break-word;
}

.badge-fdc9382 {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  max-width: 100%;
  margin-top: 0.15rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
}

.hint-fdc9382 {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--color-text-muted);
  margin: 0.2rem 0 0;
}

/* Signature actor (signed-files) — user + credential, no DTO metadata */
.sigActor-fdc9382 {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
}

.sigActorIcon-fdc9382 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.sigActorLines-fdc9382 {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.sigActorPrimary-fdc9382 {
  font-size: 0.88rem;
  line-height: 1.3;
  word-break: break-word;
}

.sigActorMeta-fdc9382 {
  font-size: 0.78rem;
  line-height: 1.25;
  color: var(--color-text-muted);
  word-break: break-word;
}


/* Floating request indicator (lower right) and the dense recent-request table inside the
   bottom drawer. The drawer surface itself is styled in components/drawer.module.css; this file
   handles only the trigger button and the troubleshooting table layout. */

.indicator-fde11c6 {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--color-card-border);
  background: var(--color-card-bg);
  color: var(--color-text-main);
  cursor: pointer;
  padding: 0;
  z-index: var(--z-fab-indicator);
  box-shadow: var(--shadow-fab);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.indicator-fde11c6:hover {
  background: var(--color-dropdown-item-hover);
}

.indicator-fde11c6:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Spinner-only mode: no drawer, no count; site setting disables interaction. */
.indicatorPassive-fde11c6 {
  cursor: default;
  pointer-events: none;
}

.indicatorPassive-fde11c6:hover {
  background: var(--color-card-bg);
}

.indicatorActive-fde11c6 {
  border-color: var(--color-accent);
  color: var(--color-text-main);
}

.indicatorSvg-fde11c6 {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-nav-icon);
  flex-shrink: 0;
}

.indicatorActive-fde11c6 .indicatorSvg-fde11c6 {
  color: var(--color-accent);
}

.indicatorSvgSpin-fde11c6 {
  animation: backend-request-spin 0.7s linear infinite;
}

.indicatorSvgTrack-fde11c6 {
  fill: currentColor;
  opacity: 0.25;
}

.indicatorSvgArc-fde11c6 {
  fill: currentColor;
  opacity: 1;
}

.badge-fde11c6 {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-main);
  background: var(--color-button-disabled-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
}

.badgeActive-fde11c6 {
  background: var(--color-cta);
  color: var(--color-accent-text);
  border-color: var(--color-cta);
}

@keyframes backend-request-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Drawer toolbar: buffer-size selector and any future controls. */
.toolbar-fde11c6 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--color-card-border);
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-main);
}

.toolbarLabel-fde11c6 {
  color: var(--color-text-main);
  font-weight: 500;
  user-select: none;
}

.toolbarSelect-fde11c6 {
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  border: 1px solid var(--color-dropdown-border);
  border-radius: 0.375rem;
  cursor: pointer;
}

.toolbarSelect-fde11c6:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

/* Dense troubleshooting table.
   - Slightly smaller font than main content (the user explicitly asked for this).
   - Tight cell padding to keep things information-dense.
   - Endpoint and page URLs truncate so a single row stays one line. */
.tableScroller-fde11c6 {
  overflow-x: auto;
  width: 100%;
}

.table-fde11c6 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--color-text-main);
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

.table-fde11c6 thead th {
  text-align: left;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  border-bottom: 1px solid var(--color-card-border);
  white-space: nowrap;
  background: var(--color-bg-main);
  position: sticky;
  top: 0;
  z-index: 1;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
}

.table-fde11c6 tbody td {
  padding: 0.2rem 0.5rem;
  vertical-align: top;
  border-bottom: 1px solid var(--color-card-border);
  white-space: nowrap;
}

.row-fde11c6:hover td {
  background: var(--color-dropdown-item-hover);
}

.thMethod-fde11c6,
.cellMethod-fde11c6 {
  width: 4rem;
  text-transform: uppercase;
  font-weight: 600;
}

.thEndpoint-fde11c6,
.cellEndpoint-fde11c6 {
  max-width: 22rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thPage-fde11c6,
.cellPage-fde11c6 {
  max-width: 18rem;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text-main);
  opacity: 0.85;
}

.thStarted-fde11c6,
.cellStarted-fde11c6 {
  width: 7rem;
  font-variant-numeric: tabular-nums;
}

.thNumeric-fde11c6,
.cellNumeric-fde11c6 {
  text-align: right;
  font-variant-numeric: tabular-nums;
  width: 5rem;
}

.thOutcome-fde11c6 {
  width: 5.5rem;
}

.outcomePending-fde11c6 {
  color: var(--color-text-main);
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-bottom: 1px solid var(--color-card-border);
  vertical-align: top;
}

.outcomeSuccess-fde11c6 {
  color: var(--color-success);
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-bottom: 1px solid var(--color-card-border);
  vertical-align: top;
}

.outcomeError-fde11c6 {
  color: var(--color-danger);
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-bottom: 1px solid var(--color-card-border);
  vertical-align: top;
}

.emptyCell-fde11c6 {
  text-align: center;
  padding: 1.5rem 0.5rem;
  color: var(--color-text-main);
  opacity: 0.7;
  font-family: 'Lato', sans-serif;
}


.fab-b2165f0 {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: var(--z-fab);
    box-sizing: border-box;
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0;
    border: 1px solid var(--color-card-border);
    border-radius: 9999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-card-bg);
    color: var(--color-text-main);
    box-shadow: var(--shadow-fab);
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.fab-b2165f0:hover {
    background: var(--color-dropdown-item-hover);
}

.fab-b2165f0:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.fabIcon-b2165f0 {
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.fabIcon-b2165f0>* {
    width: 90%;
    height: 90%;
    display: block;
}

.formStack-b2165f0 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fieldLabel-b2165f0 {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.textarea-b2165f0 {
    width: 100%;
    min-height: 8rem;
    box-sizing: border-box;
    padding: 0.5rem 0.75rem;
    font: inherit;
    border-radius: 0.5rem;
    border: 1px solid var(--color-card-border);
    background: var(--color-bg-main);
    color: var(--color-text-main);
    caret-color: var(--color-text-main);
}

.textarea-b2165f0::placeholder {
    color: var(--color-text-muted);
}

.textarea-b2165f0:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
}

.successActions-b2165f0 {
    margin-top: 0.75rem;
}

.collabWrap-ae14709 {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.collabPortalLayer-ae14709 {
  position: fixed;
  inset: 0;
  z-index: var(--z-portal);
  pointer-events: none;
  isolation: isolate;
}

.collabPortalLayer-ae14709 .collabOverlay-ae14709 {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
  background: transparent;
}

.collabOverlay-ae14709 {
  position: fixed;
  inset: 0;
  background: transparent;
}

.collabTrigger-ae14709 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  min-height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-main);
  background: var(--color-button-alt-bg);
  border: 1px solid var(--color-button-alt-border);
  border-radius: 0.375rem;
  cursor: pointer;
  box-sizing: border-box;
}

.collabTrigger-ae14709:hover {
  background: var(--color-button-alt-hover);
}

.collabTrigger-ae14709:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-dropdown-border);
}

.collabTriggerLabel-ae14709 {
  white-space: nowrap;
}

.collabDot-ae14709 {
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  box-shadow: 0 0 0 1px var(--color-button-alt-border);
}

.collabDotConnected-ae14709 {
  background: var(--color-success);
}

.collabDotReconnecting-ae14709 {
  background: var(--color-warning-700);
}

.collabDotOffline-ae14709 {
  background: var(--color-error);
}

.collabSrOnly-ae14709 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.collabPortalLayer-ae14709 .collabPopover-ae14709 {
  z-index: 1;
  pointer-events: auto;
}

.collabPopover-ae14709 {
  position: fixed;
  min-width: 16rem;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.75rem;
  color: var(--color-text-main);
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 0.375rem;
  box-shadow:
    0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
}

html[data-theme="light"] .collabPopover-ae14709 {
  background-color: var(--color-card-bg);
  border-color: var(--color-card-border);
}

[data-theme="dark"] .collabPopover-ae14709 {
  background-color: var(--color-card-bg);
  border-color: var(--color-dropdown-border);
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.35),
    0 4px 6px -2px rgb(0 0 0 / 0.2);
}

.collabPopoverSectionLabel-ae14709 {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-nav-icon);
}

.collabPopoverLocalComments-ae14709 {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.collabPopoverStatus-ae14709 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-main);
}

.collabPopoverEmpty-ae14709 {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.collabPopoverTable-ae14709 {
  max-height: 14rem;
  overflow: auto;
}


/* Dashboard: training + bookmarks side by side on wide viewports, stacked on narrow. */
.cardsRow-bdf83be {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
}

.cardColumn-bdf83be {
  flex: 1 1 22rem;
  min-width: 0;
}

@media (max-width: 64rem) {
  .cardsRow-bdf83be {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .cardColumn-bdf83be {
    flex: 1 1 auto;
    width: 100%;
  }
}

.dueOverdue-bdf83be {
  color: var(--color-error);
  font-weight: 600;
}

.dueSoon-bdf83be {
  color: var(--color-warning-700);
  font-weight: 600;
}

.dueUpcoming-bdf83be {
  color: var(--color-success);
  font-weight: 600;
}


.delete_department_button_wrap-1e6f5ff {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
}

.delete_panel_warning-1e6f5ff {
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.delete_department_modal_field-1e6f5ff {
  margin-top: 0.75rem;
}

.cardsRow-c85284a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
}

.cardColumn-c85284a {
  flex: 1 1 22rem;
  min-width: 0;
}

@media (max-width: 64rem) {
  .cardsRow-c85284a {
    flex-direction: column;
    align-items: stretch;
  }

  .cardColumn-c85284a {
    flex: 1 1 auto;
    width: 100%;
  }
}

.modalTableScroll-c85284a {
  max-height: min(50vh, 28rem);
  overflow: auto;
}

.addDocumentCheckbox-c85284a {
  margin: 0;
}

.detailSection-c85284a {
  margin-top: 0.5rem;
}


.panel-fc68e46 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-fc68e46 {
    margin: 0;
}

.sectionTitle-fc68e46 {
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.areasList-fc68e46 {
    margin: 0;
    padding-left: 1.25rem;
}

.areaItem-fc68e46 {
    margin-bottom: 0.35rem;
}

.areaMeta-fc68e46 {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.permissionNote-fc68e46 {
    margin: 0;
    font-size: 0.95rem;
}

.contactsSection-fc68e46 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.areaContactsBlock-fc68e46 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.noContacts-fc68e46 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}


.detail_title_actions-ba605a5 {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.delete_area_modal_field-ba605a5 {
  margin-top: 0.75rem;
}


.inline_message-d8d932f {
  width: fit-content;
  max-width: 100%;
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
}

.warning_actions-d8d932f {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}

.docTitleInline-d8d932f {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-main);
}

.docRevisionInline-d8d932f {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.cardActions-d8d932f {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

/* titleActions adds margin-left between adjacent buttons; gap already spaces this row */
.cardActions-d8d932f :where(button, a, [role="button"]) {
  margin-left: 0;
}

.edit_toolbar_column-d8d932f {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  width: 100%;
}

.read_only_notice-d8d932f {
  width: 100%;
  max-width: 100%;
  align-self: stretch;
}

.editToolbarActions-d8d932f {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.edit_actions-d8d932f {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.pdf_upload_panel-d8d932f {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 32rem;
}

.pdf_upload_label-d8d932f {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}


.body-2410f08 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.paragraph-2410f08 {
  margin: 0;
  line-height: 1.5;
  color: var(--color-text-main);
}

.overviewLink-2410f08 {
  margin-top: 0.25rem;
}


.intro-6056f86 {
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.overviewRow-6056f86 {
  margin: 0 0 1rem;
}

.summary-6056f86 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.summaryLine-6056f86 {
  margin: 0;
  line-height: 1.45;
}


.layout-d26443e {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.fillSlot-d26443e {
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cardShell-d26443e {
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}



.pdfWrap-c4df3b1 {
    width: 100%;
    min-height: 72vh;
}

.pdfWrapFill-c4df3b1 {
    flex: 1 1 0;
    min-height: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pdfFrame-c4df3b1 {
    width: 100%;
    min-height: 72vh;
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

.pdfFrameFill-c4df3b1 {
    flex: 1 1 0;
    min-height: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

.skeletonHost-c4df3b1 {
    position: relative;
    width: 100%;
    min-height: 72vh;
}

.skeletonHostFill-c4df3b1 {
    flex: 1 1 0;
    min-height: 12rem;
    position: relative;
    width: 100%;
}


.toggleRow-61ff89e {
  margin-bottom: 1rem;
}

.accessEventsWrap-61ff89e {
  padding: 0.75rem 0.5rem 0.5rem;
}

.accessEventsLoading-61ff89e,
.accessEventsEmpty-61ff89e {
  margin: 0;
  padding: 0.5rem 0;
  color: var(--color-text-muted);
}


.subtypesInfoBody-78cd92e {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.subtypesInfoPara-78cd92e {
  margin: 0;
  line-height: 1.45;
  color: var(--color-text-main, inherit);
}

.subtypesPanelStack-78cd92e {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.rejectRevisionReasonLabel-f545f0c {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.rejectRevisionReasonTextarea-f545f0c {
  width: 100%;
  min-height: 6.5rem;
  box-sizing: border-box;
  padding: 0.5rem 0.625rem;
  border-radius: 0.375rem;
  border: 1px solid var(--color-input-border);
  background: var(--color-input-bg);
  color: var(--color-text, inherit);
  font: inherit;
  line-height: 1.45;
  resize: vertical;
}

.rejectRevisionReasonTextarea-f545f0c:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 1px;
}

.docAreaKindCell-f545f0c {
  min-width: 12rem;
}

.docAreaActionsCell-f545f0c {
  display: flex;
  justify-content: flex-end;
}

.rowActionIcons-f545f0c {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
}

.panelTitleActions-f545f0c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.modalTableScroll-f545f0c {
  max-height: 42vh;
  overflow: auto;
}

.rowBookmarkIcon-f545f0c {
  padding-top: 1px;
  padding-right: 3px;
}

.metadataPanelLayout-f545f0c {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: start;
  width: 100%;
  margin-bottom: 1rem;
}

.metadataPanelPrimary-f545f0c {
  min-width: 0;
}

.metadataInfoGrid-f545f0c {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  min-width: 0;
}

@media (max-width: 520px) {
  .metadataInfoGrid-f545f0c {
    grid-template-columns: minmax(0, 1fr);
  }
}

.metadataInfoItem-f545f0c {
  min-width: 0;
}

.publishPanelBody-f545f0c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  text-align: center;
}

.publishPanelBody-f545f0c > p {
  margin: 0;
  max-width: 36rem;
}

.publishPanelError-f545f0c {
  align-self: stretch;
  width: 100%;
}

.pdfUploadPanelActions-f545f0c {
  display: flex;
  justify-content: center;
  width: 100%;
}

.draftRevisionsToggle-f545f0c {
  font: inherit;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--color-card-border);
  border-radius: 0.375rem;
  background: var(--color-card-bg);
  color: var(--color-text);
  cursor: pointer;
}

.draftRevisionsToggle-f545f0c:hover,
.draftRevisionsToggle-f545f0c:focus-visible {
  background: var(--color-bg-muted);
}

.draftRevisionsHint-f545f0c {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.metadataPdfPreview-f545f0c {
  justify-self: end;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.metadataPdfPreviewLink-f545f0c {
  display: block;
  width: fit-content;
  max-width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--color-card-border);
  box-shadow: var(--color-card-shadow);
  background: var(--color-card-bg);
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.metadataPdfPreviewInner-f545f0c {
  position: relative;
  display: block;
  box-sizing: border-box;
}

/* Placeholder while PNG loads: A4 portrait (210×297 mm) inside max thumbnail bounds. */
.metadataPdfPreviewInnerLoading-f545f0c {
  width: min(12.5rem, 100%);
  height: min(11rem, calc(min(12.5rem, 100%) * 297 / 210));
}

.metadataPdfPreviewInnerLoaded-f545f0c {
  width: fit-content;
  max-width: min(12.5rem, 100%);
}

.metadataPdfPreviewLink-f545f0c:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

.metadataPdfPreviewImg-f545f0c {
  display: block;
  max-width: min(12.5rem, 100%);
  max-height: 11rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: top right;
  background: var(--color-surface-muted);
  transition: opacity 0.2s ease;
}

/* In-flow sizing when loaded; invisibly fills loading box so decode still runs. */
.metadataPdfPreviewImgLoading-f545f0c {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  object-fit: contain;
}

.metadataPdfPreviewImgLoaded-f545f0c {
  position: static;
  opacity: 1;
}

/* Per-row HEAD drawer: superseded revisions table */

.supersededDrawerWrap-f545f0c {
  display: block;
}
.supersededLoading-f545f0c,
.supersededEmpty-f545f0c {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.25rem 0.5rem;
}

.supersededTable-f545f0c {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: transparent;
}

.supersededTable-f545f0c thead th {
  text-align: left;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid var(--color-card-border);
  color: var(--color-text-muted);
}

.supersededTable-f545f0c thead th.supersededApprovedCell-f545f0c {
  text-align: right;
}

.supersededTable-f545f0c tbody td {
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid var(--color-card-border);
  vertical-align: top;
}

.supersededTable-f545f0c tbody tr:last-child td {
  border-bottom: none;
}

.supersededRow-f545f0c:hover {
  background: var(--color-bg-muted);
}

.supersededIdentityCell-f545f0c {
  min-width: 10rem;
  max-width: 22rem;
}

.supersededActionsCell-f545f0c {
  width: 4rem;
  text-align: center;
  vertical-align: middle;
}

.supersededActionsInner-f545f0c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.supersededNotesButton-f545f0c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: none;
  border-radius: var(--radius-sm, 0.25rem);
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
}

.supersededNotesButton-f545f0c:hover,
.supersededNotesButton-f545f0c:focus-visible {
  color: var(--color-text);
  background: var(--color-bg-muted);
}

.supersededApprovedCell-f545f0c {
  text-align: right;
  white-space: nowrap;
  color: var(--color-text-muted);
}

@media (max-width: 560px) {
  .supersededTable-f545f0c thead th.supersededActionsCell-f545f0c,
  .supersededTable-f545f0c tbody td.supersededActionsCell-f545f0c {
    display: none;
  }
}

.supersededNotesModalBody-f545f0c {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-text);
}

/* Draft state panel inside the document detail */

.draftPanelBody-f545f0c {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.draftPanelStatus-f545f0c {
  font-size: 0.875rem;
  color: var(--color-text);
}

.draftPanelHint-f545f0c {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.draftPanelActions-f545f0c {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Hug content: cards do not stretch with fill_height in a flex column. */
.cardCol-278145f {
  align-self: flex-start;
  width: 100%;
  min-width: 0;
}

.leftExplanation-278145f {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text-main);
  margin: 0 0 0.75rem 0;
}

/* Matches document detail: components `PanelStackView` with `document_detail_gap` */
.page-278145f {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  flex: 1;
}

.panels-278145f {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.panels-278145f > * + * {
  margin-top: 0.5em;
}

/* Offset PanelView global 0.5rem margin (adds to card padding at sides). */
.panels-278145f [data-panel="true"] {
  margin-left: 0;
  margin-right: 0;
}

.panels-278145f [data-panel="true"]:first-child {
  margin-top: 0;
}

.panels-278145f [data-panel="true"]:last-child {
  margin-bottom: 0;
}

.dropRoot-278145f {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
}

.dropZone-278145f {
  min-height: 5.5rem;
  box-sizing: border-box;
  border: 2px dashed var(--color-card-border);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  background: var(--color-bg-main);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dropZoneActive-278145f {
  border-color: var(--color-accent);
  background: var(--color-nav-icon-hover);
}

.dropZone-278145f:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hiddenFile-278145f {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.dropHelp-278145f {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

.fileLine-278145f {
  font-size: 0.875rem;
  word-break: break-all;
}

.chainList-278145f {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.chainItem-278145f {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.chainStep-278145f {
  font-weight: 600;
}

.codeBadge-278145f {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.sigBlock-278145f {
  border: 1px solid var(--color-card-border);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
}

.sigTitle-278145f {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.sigVerdictRow-278145f {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.5rem 0;
}

.sigVerdictIcon-278145f {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  color: var(--color-text-muted);
}

.sigBlock-278145f[data-sig-passed="true"] .sigVerdictIcon-278145f {
  color: var(--color-success);
}

.sigBlock-278145f[data-sig-passed="false"] .sigVerdictIcon-278145f {
  color: var(--color-danger);
}

.sigReasonText-278145f {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.sigUserLine-278145f {
  margin: 0 0 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sigUserLabel-278145f {
  font-weight: 600;
  font-size: 0.88rem;
}

.sigDetails-278145f {
  font-size: 0.88rem;
}

.sigDetails-278145f > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  margin: 0 0 0.25rem 0;
}

.sigDetails-278145f > summary::-webkit-details-marker {
  display: none;
}

.sigCodeLine-278145f {
  margin: 0.25rem 0 0.5rem 0;
}

code.code-278145f {
  font-size: 0.8rem;
  word-break: break-all;
}

.repoSection-278145f {
  margin-top: 0.75rem;
}

.repoSectionTitle-278145f {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.repoDocRow-278145f {
  margin: 0 0 0.5rem 0;
}

.repoDocLabel-278145f {
  margin: 0 0 0.2rem 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.repoStateLine-278145f {
  margin: 0 0 0.5rem 0;
  font-size: 0.88rem;
}

.repoStateLabel-278145f {
  font-weight: 600;
}

/* Source markdown + embedded file downloads (verify) */
.dlButton-278145f {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.35rem;
  border: 1px solid var(--color-card-border);
  border-radius: 6px;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  cursor: pointer;
}

.dlButton-278145f:hover {
  background: var(--color-nav-icon-hover);
}

.dlIcon-278145f {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.embeddedActionCell-278145f {
  display: flex;
  justify-content: flex-end;
}

.embeddedEmpty-278145f {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}


.root-4e88855 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-height: 0;
}

.header-4e88855 {
    margin-bottom: 0;
}

.toolbar-4e88855 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.toolbar_right-4e88855 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.editor_host-4e88855 {
    flex: 1;
    min-height: 24rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-subtle, #ccc);
    border-radius: 4px;
    overflow: hidden;
}

/* Hide eigenpal File menu Save; keep native Open. Scoped to the editor host. */
.editor_host-4e88855 [data-testid='docx-editor-host'] [role='menubar'] > div:first-child > div[style*='position: fixed'] > div:nth-child(2) {
    display: none !important;
}

/* Backup when read-only: eigenpal toolbar should not mount, but hide if it does. */
.editor_host-4e88855 [data-testid='docx-editor-host'][data-read-only='true'] [data-testid='docx-editor'] > div > div:first-child > .z-50-4e88855 {
    display: none !important;
}

.inline_message-4e88855 {
    margin: 0;
}

.field_label-4e88855 {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.description_input-4e88855 {
    min-height: 4rem;
    width: 100%;
}

.modal_actions-4e88855 {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}


.page-1a86486 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
  flex: 1;
}

.summaryGrid-1a86486 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 36rem) {
  .summaryGrid-1a86486 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 52rem) {
  .summaryGrid-1a86486 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.summaryCell-1a86486 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-width: 0;
}

.summaryLabel-1a86486 {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-text-muted);
}

.summaryValue-1a86486 {
  font-size: 0.95rem;
  word-break: break-word;
}

/* “Not verified” + verify action on one line (replaces the action after verify with status only). */
.summaryWithAction-1a86486 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

/* Verify actions: left-align with panel title (not the title row’s end-aligned slot). */
.panelActionsUnderTitle-1a86486 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Content-sized: do not use flex: 1 1 0 here — in a list column card with height auto,
   that basis-0 flex child can resolve to 0px and hide the summary + table. */
.signedFilesListLayout-1a86486 {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}

.signedFilesListLayout-1a86486 > [data-list-grow] {
  flex: 0 1 auto;
  min-height: 0;
  max-height: 100%;
}

.signedFilesListLayout-1a86486 [data-list-grow] {
  min-height: 0;
}

.signedFilesListLayout-1a86486 > .summaryGrid-1a86486,
.signedFilesListLayout-1a86486 > [data-testid="signed-files-list-fetch-partial-error"] {
  flex-shrink: 0;
}

/* Wraps the split + failure modals without affecting the split layout. */
.filesPageWithModals-1a86486 {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
}

/* Until PDF batch: reserve space; no “not verified” copy (plan). */
.summaryPlaceholder-1a86486 {
  display: block;
  min-height: 1.5rem;
  width: 0.5rem;
}

.summaryBadButton-1a86486 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  color: var(--color-danger);
}

.summaryBadButton-1a86486:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.failureList-1a86486 {
  list-style: disc;
  margin: 0.25rem 0 0 1.1rem;
  padding: 0;
  text-align: left;
}

.failureListItem-1a86486 {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  word-break: break-word;
}

.verifyOkMark-1a86486 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-success);
  line-height: 1;
}

.verifyBadMark-1a86486 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-danger);
  line-height: 1;
}

/* Summary grid: larger check / X, aligned with label column. */
.summaryStatusIcon-1a86486 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* Detail panel: auto-verify loading + stacked panels (no extra outer card offset). */
.detailLoading-1a86486 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.25rem 0;
  min-height: 8rem;
}

.detailLoadingCaption-1a86486 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.detailPanels-1a86486 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
}

/* Neutralize default panel outer margin when panels are stacked in the detail card. */
.detailPanels-1a86486 > [data-panel="true"] {
  margin-block: 0;
}

.sigVerdictLine-1a86486 {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.sigDiagBlock-1a86486 {
  margin-top: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 0.35rem;
  background: var(--color-surface-raised);
  color: var(--color-text-main);
}

.sigDiagDetails-1a86486 {
  font-size: 0.9rem;
}

.sigDiagSummary-1a86486 {
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  padding: 0.45rem 0.6rem;
}

.sigDiagSummary-1a86486::-webkit-details-marker {
  display: none;
}

.sigDiagSummaryTitle-1a86486 {
  font-weight: 600;
}

.sigDiagSummaryVerdict-1a86486 {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.sigDiagSummaryReason-1a86486 {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.sigDiagBody-1a86486 {
  padding: 0 0.65rem 0.65rem;
  border-top: 1px solid var(--color-border);
}

.sigUserLine-1a86486 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin-top: 0.5rem;
}

.sigUserLabel-1a86486 {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--color-text-muted);
}

.sigCodeLine-1a86486 {
  margin: 0.35rem 0 0;
}

.sigCode-1a86486 {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  word-break: break-word;
}

.sigChainList-1a86486 {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.sigChainItem-1a86486 {
  margin: 0.2rem 0;
}

.sigChainStep-1a86486 {
  font-weight: 500;
}

.sigCodeBadge-1a86486 {
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}


.page-b1f4ad2 {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.modalTableScroll-b1f4ad2 {
  max-height: 42vh;
  overflow: auto;
  margin-bottom: 1rem;
}

.addDocumentCheckbox-b1f4ad2 {
  margin: 0;
}

.metadataGrid-b1f4ad2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  min-width: 0;
}

.metadataItem-b1f4ad2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.metadataValue-b1f4ad2 {
  min-width: 0;
}


.root-a600408 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.salutation-a600408 {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.45;
}

.paragraph-a600408 {
  margin: 0;
  line-height: 1.5;
  white-space: pre-wrap;
}

.links-a600408 {
  margin: 0.25rem 0 0 0;
}

.links-a600408 a {
  text-decoration: underline;
}


.page-26ca590 {
  box-sizing: border-box;
  width: 100%;
  min-height: 0;
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.err-26ca590 {
  color: var(--color-error);
}

.fieldLabel-26ca590 {
  font-weight: 600;
  color: var(--color-text-main);
}

.textInput-26ca590 {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  line-height: 1.4;
  border: 1px solid var(--color-card-border);
  border-radius: 0.4rem;
  padding: 0.45rem 0.55rem;
  background: var(--color-card-bg);
  color: var(--color-text-main);
  caret-color: var(--color-text-main);
}

.textInput-26ca590:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.messageTextarea-26ca590 {
  width: 100%;
  min-height: 11rem;
  box-sizing: border-box;
  font: inherit;
  line-height: 1.4;
  border: 1px solid var(--color-card-border);
  border-radius: 0.4rem;
  padding: 0.5rem 0.55rem;
  resize: vertical;
  background: var(--color-card-bg);
  color: var(--color-text-main);
  caret-color: var(--color-text-main);
}

.messageTextarea-26ca590:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.detail_body-26ca590 {
  color: var(--color-text-main);
  white-space: pre-wrap;
  line-height: 1.45;
}

.hint-26ca590 {
  margin-top: 0.5rem;
  color: var(--color-text-muted);
}

.rowStateTable-26ca590 {
  color: var(--color-text-muted);
  font-size: 0.86rem;
}

.detailFieldList-26ca590 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detailField-26ca590 {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.detailFieldLabel-26ca590 {
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.detailFieldValue-26ca590 {
  color: var(--color-text-main);
  line-height: 1.45;
  word-wrap: break-word;
}

.centeredPanelAction-26ca590 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.25rem;
}

.publishHidden-26ca590 {
  display: none;
}


.page-60f5459 {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.roleBadges-60f5459 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}

.roleBadge-60f5459 {
  font-size: 0.75rem;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  border: 1px solid var(--color-border-muted);
}

.panelScroll-60f5459 {
  min-height: 0;
}

.detailGrid-60f5459 {
  display: grid;
  gap: 0.5rem;
}

.detailHeader-60f5459 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detailRow-60f5459 {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem;
}

.detailLabel-60f5459 {
  font-weight: 600;
  opacity: 0.85;
}

.detailName-60f5459 {
  margin: 0 0 0.75rem;
}

.userLink-60f5459 {
  display: block;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.userName-60f5459 {
  font-weight: 600;
  display: block;
}

.userEmail-60f5459 {
  font-size: 0.85rem;
  opacity: 0.85;
  display: block;
}


.registration_hint-2d23ebc {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--color-text-main);
}

.credentials_empty_purpose-2d23ebc {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--color-text-main);
}

.delete-panel-description-2d23ebc {
  margin: 0 0 1rem;
}

.delete-panel-button-2d23ebc {
  display: flex;
}

.info_panel_body-2d23ebc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metadata_trust_block-2d23ebc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.5rem 0 0;
}

.metadata_trust_label-2d23ebc {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-main);
  margin: 0;
}

.metadata_trust_note-2d23ebc {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.35;
}

.row_actions-2d23ebc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
}


.stack-e32fbbf {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.banner-e32fbbf {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-card-border);
  box-shadow: var(--color-card-shadow);
}

/* Dismiss control sits at the viewport (strip) right edge; message stays centered. */
.bannerDismiss-e32fbbf {
  position: relative;
  padding: 0.5rem 0;
}

.inner-e32fbbf {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
  white-space: pre-wrap;
}

.centerMessage-e32fbbf {
  max-width: 60rem;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 2.5rem 0 1rem;
  text-align: center;
  white-space: pre-wrap;
}

.dismissButton-e32fbbf {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  line-height: 1;
  z-index: 1;
  padding: 0.15rem 0.45rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  background: transparent;
  color: inherit;
  opacity: 0.85;
}

.dismissButton-e32fbbf:hover {
  opacity: 1;
  background: var(--color-interactive-hover-on-dark);
}

.dismissButton-e32fbbf:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.previewCaption-e32fbbf {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
  color: var(--color-text-muted);
}

.levelInfo-e32fbbf {
  background: var(--tone-info-bg);
  color: var(--tone-info-fg);
}

.levelNotice-e32fbbf {
  background: var(--tone-notice-bg);
  color: var(--tone-notice-fg);
}

.levelWarning-e32fbbf {
  background: var(--tone-warning-bg);
  color: var(--tone-warning-fg);
}

.levelError-e32fbbf {
  background: var(--tone-danger-bg);
  color: var(--tone-danger-fg);
}

.levelCritical-e32fbbf {
  background: var(--tone-critical-bg);
  color: var(--tone-critical-fg);
}

.bannerError-e32fbbf {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  text-align: center;
  background: var(--tone-danger-bg);
  color: var(--tone-danger-fg);
  border-bottom: 1px solid var(--color-card-border);
  box-shadow: var(--color-card-shadow);
}


.page-931f559 {
  box-sizing: border-box;
  width: 100%;
  min-height: 0;
  height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.panelFields-931f559 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scheduleRow-931f559 {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.25rem;
  width: 100%;
  min-width: 0;
}

.scheduleDateCol-931f559 {
  flex: 1 1 12rem;
  min-width: 0;
}

.scheduleTimeCol-931f559 {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 7.5rem;
}

.timeLabel-931f559 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.timeInput-931f559 {
  box-sizing: border-box;
  width: 100%;
  max-width: 10rem;
  padding: 0.5rem 0.65rem;
  font: inherit;
  line-height: 1.25;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm, 4px);
  background: var(--color-card-bg);
  color: var(--color-text-main);
}

.optionsTogglesRow-931f559 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem 2rem;
}

.createForm-931f559 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fieldLabel-931f559 {
  font-weight: 600;
}

.messageTextarea-931f559 {
  box-sizing: border-box;
  width: 100%;
  min-height: 6rem;
  padding: 0.5rem 0.65rem;
  font: inherit;
  line-height: 1.4;
  resize: vertical;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm, 4px);
  background: var(--color-card-bg);
  color: var(--color-text-main);
  caret-color: var(--color-text-main);
}



/* Caps height for default-approver tables; inner `ListTableSectionView` supplies flex layout. */
.approverTableShell-50f9331 {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  max-height: min(50vh, 20rem);
  overflow: hidden;
}

/* Bounded scroll container for the Add Approver modal table; sticky header via embed_in_outer_scroll. */
.approverModalScroll-50f9331 {
  max-height: min(60vh, 26rem);
  overflow: auto;
  min-width: 0;
}

.approverModalScroll-50f9331 table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--color-text-main);
  background: var(--color-button-alt-bg);
  background-clip: padding-box;
  box-shadow: 0 1px 0 var(--color-card-border);
}

.approverModalCheckbox-50f9331 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0 auto;
}

.subtypeToggleRow-50f9331 {
  display: block;
  padding: 0.5rem;

}

.subtypeDropdownRow-50f9331 {
  padding: 0.5em 0;
}

.subtypeActions-50f9331 {
  padding: 0.5em 0;
  display: flex;
  justify-content: flex-end;
}

.subtypeApproversSection-50f9331 {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.subtypeApproversLabel-50f9331 {
  margin-bottom: 0.4rem;
  font-weight: 600;
}


.page-a42d31c {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.intro-a42d31c {
    margin: 0 0 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* 8px margin on each panel edge → 16px between stacked panels; disable tight-stack sibling gap. */
.detailCardInner-a42d31c>div[data-tight="true"]>*+* {
    margin-top: 0;
}

.detailCardInner-a42d31c [data-panel="true"] {
    margin: 0.5rem;
}

.metaGrid-a42d31c {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem 1rem;
    min-width: 0;
}

@media (min-width: 36rem) {
    .metaGrid-a42d31c {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 52rem) {
    .metaGrid-a42d31c {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.metaCell-a42d31c {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-width: 0;
}

.metaLabel-a42d31c {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.metaValue-a42d31c {
    color: var(--color-text-main);
    line-height: 1.45;
    min-width: 0;
    max-width: 100%;
}

.metaValueBreak-a42d31c {
    color: var(--color-text-main);
    line-height: 1.45;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tableCellTruncate-a42d31c {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.messageTextarea-a42d31c {
    box-sizing: border-box;
    width: 100%;
    min-height: 11rem;
    padding: 0.5rem 0.75rem;
    font: inherit;
    line-height: 1.45;
    resize: vertical;
    border: 1px solid var(--color-card-border);
    border-radius: 0.5rem;
    background: var(--color-card-bg);
    color: var(--color-text-main);
    caret-color: var(--color-text-main);
}

.messageTextarea-a42d31c::placeholder {
    color: var(--color-text-muted);
}

.messageTextarea-a42d31c:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
}

.jsonBlock-a42d31c {
    margin: 0;
    padding: 0.75rem;
    overflow: auto;
    max-height: 18rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--color-text-main);
    background: var(--color-bg-main);
    border: 1px solid var(--color-card-border);
    border-radius: 0.375rem;
    white-space: pre-wrap;
    word-break: break-word;
}

.actionsIntro-a42d31c {
    margin: 0 0 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

.actionsRow-a42d31c {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}


.page-8c96339 {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0;
  /* Horizontal inset comes from MainArea; card spans the full content slot width. */
  padding: 0 0 1.5rem;
}

.panelIntro-8c96339 {
  margin: 0 0 1rem;
  line-height: 1.5;
  color: var(--color-text-muted, var(--color-text-main));
}

.toggleRow-8c96339 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}


.detailLayout-3293617 {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

@media (min-width: 1440px) {
    .detailLayout-3293617 {
        flex-direction: row;
        align-items: flex-start;
    }

    .detailLayout-3293617 > * {
        flex: 1 1 0;
        min-width: 0;
    }
}

.lead-3293617 {
    margin: 0;
    line-height: 1.5;
}

.sessionList-3293617 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sessionItem-3293617 {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.sessionItem-3293617:last-child {
    border-bottom: none;
}

.actions-3293617 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}


.stack-359f806 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}


.page-408ecca {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.intro-408ecca {
  color: var(--color-text-muted, var(--color-text-main));
  margin: 0 0 0.75rem 0;
}

.note-408ecca {
  color: var(--color-text-muted, var(--color-text-main));
  font-size: 0.9rem;
  margin: 0.5rem 0 0 0;
}

.error_message-408ecca {
  color: var(--color-error);
  font-weight: 600;
  margin: 0.25rem 0 0 0;
}

.field_grid-408ecca {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.section_label-408ecca {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin: 0;
}

.schedule_row-408ecca {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-items: start;
}

@media (max-width: 36rem) {
  .schedule_row-408ecca {
    grid-template-columns: 1fr;
  }
}

.scheduled_range-408ecca {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
}

.revision_row-408ecca {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.attendance_row-408ecca {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cancel_panel-408ecca {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.canceled-408ecca {
  color: var(--color-error);
  font-weight: 600;
}

.complete-408ecca {
  color: var(--color-success);
  font-weight: 600;
}


/* Fills the main content slot (like VsplitLayout); scrolls when the card+table is taller than the slot.
   Documents list uses fill_height=false + list_in_column on the card instead of stretching the card. */
.matrixPageRoot-43f9f12 {
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}

.matrixLayout-43f9f12 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* `flex: 1` / `1 1 0` collapses to 0 height when the parent main size is `auto`; content stays in DOM but is clipped by `overflow: hidden` on ancestors. */
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
}

.roleHeaderContent-43f9f12 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1;
}

.roleDeleteButton-43f9f12 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-danger);
  cursor: pointer;
  padding: 0;
  outline: none;
  box-shadow: none;
  line-height: 1;
}

.roleDeleteButton-43f9f12:hover:not(:disabled),
.roleDeleteButton-43f9f12:focus-visible:not(:disabled) {
  background: transparent;
  color: var(--color-danger-hover);
  border: 0;
  box-shadow: none;
}

.roleDeleteButton-43f9f12:focus-visible:not(:disabled) {
  outline: none;
}

.roleDeleteButton-43f9f12:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.roleDeleteButton-43f9f12 svg,
.roleDeleteButton-43f9f12 svg * {
  color: var(--color-danger);
  stroke: var(--color-danger);
}

.roleDeleteButton-43f9f12:hover:not(:disabled) svg,
.roleDeleteButton-43f9f12:hover:not(:disabled) svg *,
.roleDeleteButton-43f9f12:focus-visible:not(:disabled) svg,
.roleDeleteButton-43f9f12:focus-visible:not(:disabled) svg * {
  color: var(--color-danger-hover);
  stroke: var(--color-danger-hover);
}

.tableActionRow-43f9f12 td {
  background: var(--color-card-bg);
}

.tableActionSpacer-43f9f12 {
  min-height: 1rem;
}

.tableActionRight-43f9f12 {
  display: flex;
  justify-content: flex-end;
}

.tableActionFullWidth-43f9f12 {
  display: flex;
  justify-content: flex-start;
}

/* Primary matrix scrollport: grows with layout; scrollbar only when content overflows */
.matrixTableScroll-43f9f12 {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  overflow: auto;
}

/* Sticky column headers */
.matrixTableScroll-43f9f12 table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  color: var(--color-text-main);
  background: var(--color-button-alt-bg);
  background-clip: padding-box;
  box-shadow: 0 1px 0 var(--color-card-border);
}

/* Sticky top-left corner (documents / users column) */
.matrixTableScroll-43f9f12 table thead th:first-child {
  left: 0;
  z-index: 4;
}

/* Sticky first data column */
.matrixTableScroll-43f9f12 table tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--color-card-bg);
  background-clip: padding-box;
  box-shadow: 1px 0 0 var(--color-card-border);
}

.matrixTableScroll-43f9f12 tbody tr.matrixTableRow-43f9f12:hover td {
  background: var(--color-button-alt-hover);
}

.matrixTableScroll-43f9f12 tbody tr.matrixTableRow-43f9f12:hover td:first-child {
  background: var(--color-button-alt-hover);
}

.matrixTableRow-43f9f12 {
  border-bottom: 1px solid var(--color-card-border);
}

.matrixTableRow-43f9f12:last-child {
  border-bottom: none;
}

.matrixTableRow-43f9f12:hover {
  background: transparent;
}

.matrixEmptyMessage-43f9f12 {
  text-align: center;
}

/* Document / user label + row delete: one column, trash aligned with the row label */
.matrixFirstColumnBody-43f9f12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}

.matrixFirstColumnMain-43f9f12 {
  flex: 1;
  min-width: 0;
}

.matrixFirstColumnTrash-43f9f12 {
  flex-shrink: 0;
  align-self: center;
}

.matrixDocumentCell-43f9f12 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.matrixDocumentNumber-43f9f12 {
  display: block;
}

.matrixDocumentName-43f9f12 {
  display: block;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.matrixUserCell-43f9f12 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.matrixUserName-43f9f12 {
  display: block;
}

.matrixUserEmail-43f9f12 {
  display: block;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.addDocumentCheckbox-43f9f12 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0 auto;
}

.addUserCheckbox-43f9f12 {
  width: 100%;
}

/* Add-user / add-document modal list: scroll body, pinned header row */
.matrixModalTableScroll-43f9f12 {
  max-height: min(60vh, 26rem);
  overflow: auto;
  min-width: 0;
}

.matrixModalTableScroll-43f9f12 table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--color-text-main);
  background: var(--color-button-alt-bg);
  background-clip: padding-box;
  box-shadow: 0 1px 0 var(--color-card-border);
}

.matrixModalTableScroll-43f9f12 [data-testid='training-plan-add-document-table'] table {
  table-layout: fixed;
}

.matrixModalTableScroll-43f9f12 [data-testid='training-plan-add-document-table'] th:first-child,
.matrixModalTableScroll-43f9f12 [data-testid='training-plan-add-document-table'] td:first-child {
  width: 2.5rem;
  min-width: 2.5rem;
  max-width: 2.5rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  text-align: center;
}

.matrixModalTableScroll-43f9f12 [data-testid='training-plan-add-document-table'] th:nth-child(2),
.matrixModalTableScroll-43f9f12 [data-testid='training-plan-add-document-table'] td:nth-child(2) {
  width: 14ch;
  min-width: 14ch;
  max-width: 14ch;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.addDocumentNumber-43f9f12 {
  display: block;
  text-align: left;
}

.addDocumentTitleLink-43f9f12 {
  display: block;
  width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.addDocumentTitleLink-43f9f12:hover .addDocumentTitleText-43f9f12,
.addDocumentTitleLink-43f9f12:focus-visible .addDocumentTitleText-43f9f12 {
  text-decoration: underline;
}

.addDocumentTitleText-43f9f12 {
  display: block;
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.addDocumentName-43f9f12 {
  display: block;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 28rem;
}

.matrixCellControl-43f9f12 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.matrixCellRow-43f9f12 {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: center;
  flex-wrap: wrap;
}

.matrixCellKindLabel-43f9f12 {
  min-width: 0;
  max-width: 9rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font: inherit;
  color: inherit;
}

.matrixModalKindField-43f9f12 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.matrixModalKindLabel-43f9f12 {
  font: inherit;
  font-weight: 600;
  color: inherit;
}

.matrixModalKindSelect-43f9f12 {
  width: 100%;
  max-width: 100%;
  padding: 0.2rem 0.35rem;
  font: inherit;
  border: 1px solid var(--color-card-border);
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.matrixCellEditButton-43f9f12 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  border: 1px solid var(--color-card-border);
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.matrixCellEditButton-43f9f12:hover:not(:disabled),
.matrixCellEditButton-43f9f12:focus-visible:not(:disabled) {
  background: var(--color-button-alt-hover);
}

.matrixCellEditButton-43f9f12:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.matrixCellIssueMessage-43f9f12 {
  display: block;
  text-align: left;
  font-size: 0.75rem;
  color: var(--color-danger-700);
}

.commitRecordContext-43f9f12 {
  flex-basis: 100%;
  width: 100%;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
}

.commitRecordContext-43f9f12 a {
  color: var(--color-link);
  text-decoration: underline;
}

.commitRecordSep-43f9f12 {
  opacity: 0.55;
  user-select: none;
}


.stack-a78770b {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.actions-a78770b {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lead-a78770b {
    margin: 0;
    line-height: 1.5;
}


/* Root wrapper for E2E and layout */
.page-f5316b2 {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.intro-f5316b2 {
  color: var(--color-text-muted, var(--color-text-main));
  margin: 0 0 0.75rem 0;
}

.overdue-f5316b2 {
  color: var(--color-error);
  font-weight: 600;
}

.obsolete-f5316b2 {
  color: var(--color-text-muted, var(--color-text-main));
  font-style: italic;
}

.superseded-f5316b2 {
  color: var(--color-text-muted, var(--color-text-main));
  font-style: italic;
}

.canceled-f5316b2 {
  color: var(--color-text-muted, var(--color-text-main));
  font-style: italic;
}

.cancel_reason-f5316b2 {
  color: var(--color-text-muted, var(--color-text-main));
  font-size: 0.875rem;
  margin-top: 0.25rem;
  white-space: pre-wrap;
}

.cancel_panel-f5316b2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail_empty-f5316b2 {
  color: var(--color-text-muted, var(--color-text-main));
  margin: 0.5rem 0 0 0;
}


.page-a23b79b {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* Keep the settings panels close together and let extra card space grow to the right. */
.panelsLayout-a23b79b {
  box-sizing: border-box;
  min-width: 0;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
  margin-bottom: -0.25rem;
  width: calc(100% + 0.5rem);
}

@media (min-width: 640px) {
  .panelsLayout-a23b79b {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-bottom: -0.75rem;
    width: calc(100% + 1.5rem);
  }
}

.panelsLayout-a23b79b > [data-testid='user-settings-panels'] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 0.5rem;
  align-items: stretch;
  justify-items: stretch;
}

@media (min-width: 40rem) {
  .panelsLayout-a23b79b > [data-testid='user-settings-panels'] {
    column-gap: 0.625rem;
    row-gap: 0.5rem;
  }
}

.panelsLayout-a23b79b > [data-testid='user-settings-panels'] > [data-panel='true'] {
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-self: stretch;
}

.panelsLayout-a23b79b > [data-testid='user-settings-panels'] > [data-panel='true'] > :last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.panelIntro-a23b79b {
  margin: 0 0 1rem;
  line-height: 1.5;
  color: var(--color-text-main);
}

.controlRow-a23b79b {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  margin-top: auto;
}

.controlRow-a23b79b > * {
  flex: 1 1 14rem;
  min-width: 0;
}

.communicationPrefsCardWrap-a23b79b {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.signingKeysCardWrap-a23b79b {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}


/* Matches `.page` gap in user_settings.module.css between stacked cards. */
.cardWrap-30e2765 {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.intro-30e2765 {
  margin: 0 0 1rem;
  line-height: 1.5;
  color: var(--color-text-main);
}

.panelScrollWrap-30e2765 {
  overflow-x: auto;
  width: 100%;
}

.panelKindStack-30e2765 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panelKindStack-30e2765 [data-panel='true'] {
  margin: 0;
}

.togglePanelRow-30e2765 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
}

.togglePanelChannel-30e2765 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 7rem;
}

.togglePanelLabel-30e2765 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: var(--color-text-main);
}

.toggleCell-30e2765 {
  display: flex;
  justify-content: center;
  align-items: center;
}


.panelBody-76e7bdb {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.dropZone-76e7bdb {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropZoneCircle-76e7bdb {
  width: min(100%, calc(400px - 5.5rem));
  max-height: calc(400px - 5.5rem);
  aspect-ratio: 1;
  height: auto;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px dashed var(--color-dropdown-border);
  overflow: hidden;
  background: var(--color-surface-muted, transparent);
}

.dropZoneActive-76e7bdb .dropZoneCircle-76e7bdb {
  border-color: var(--color-cta);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-cta) 35%, transparent);
}

.dropZoneMedia-76e7bdb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta);
  color: var(--color-accent-text);
}

.dropZoneImage-76e7bdb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dropZoneInitials-76e7bdb {
  font-size: clamp(2rem, 18vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.dropZoneHint-76e7bdb {
  position: absolute;
  left: 50%;
  bottom: 6%;
  z-index: 2;
  transform: translateX(-50%);
  width: min(88%, 16rem);
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #fff;
  background: rgb(0 0 0 / 74%);
  pointer-events: none;
}

.cropViewport-76e7bdb {
  position: relative;
  width: 18.75rem;
  height: 18.75rem;
  margin: 0 auto;
  border-radius: 9999px;
  overflow: hidden;
  background: #111;
  touch-action: none;
  cursor: grab;
}

.cropViewportDragging-76e7bdb {
  cursor: grabbing;
}

.cropCanvas-76e7bdb {
  width: 100%;
  height: 100%;
  display: block;
}

.cropMask-76e7bdb {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  box-shadow: 0 0 0 9999px rgb(0 0 0 / 35%);
  pointer-events: none;
}

.cropDragHint-76e7bdb {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 0.35s ease;
  animation: cropDragHintPulse 2.4s ease-in-out infinite;
}

.cropDragHintHidden-76e7bdb {
  opacity: 0;
  animation: none;
}

@keyframes cropDragHintPulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.55;
  }
}

.cropDragHintArrow-76e7bdb {
  position: absolute;
  color: rgb(255 255 255 / 70%);
  width: 1.5rem;
  height: 1.5rem;
}

.cropDragHintArrowTop-76e7bdb {
  composes: cropDragHintArrow;
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.cropDragHintArrowBottom-76e7bdb {
  composes: cropDragHintArrow;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.cropDragHintArrowLeft-76e7bdb {
  composes: cropDragHintArrow;
  left: 12%;
  top: 50%;
  transform: translateY(-50%);
}

.cropDragHintArrowRight-76e7bdb {
  composes: cropDragHintArrow;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
}

.zoomRow-76e7bdb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zoomRow-76e7bdb input {
  flex: 1;
}

.hiddenInput-76e7bdb {
  display: none;
}
