/* /Components/AuditHistoryTimeline.razor.rz.scp.css */
/*
   Plan 16-06 Task 4 — vertical timeline. No red, no purple, no pure black.
*/

.ct-audit-timeline[b-lvnfjygve7] {
    margin-top: var(--ct-space-4);
    padding: var(--ct-space-4);
    background: var(--ct-off-white);
    border-left: 3px solid var(--ct-grey-mid);
    border-radius: var(--ct-radius-sm);
}

.ct-audit-timeline__heading[b-lvnfjygve7] {
    margin: 0 0 var(--ct-space-3) 0;
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    font-size: var(--ct-font-size-lg);
}

.ct-audit-timeline__list[b-lvnfjygve7] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--ct-space-3);
}

.ct-audit-timeline__entry[b-lvnfjygve7] {
    padding: var(--ct-space-2) 0;
    border-bottom: 1px solid var(--ct-grey-mid);
}
.ct-audit-timeline__entry:last-child[b-lvnfjygve7] { border-bottom: 0; }

.ct-audit-timeline__head[b-lvnfjygve7] {
    display: flex;
    align-items: center;
    gap: var(--ct-space-3);
    margin-bottom: var(--ct-space-1);
}

.ct-audit-timeline__time[b-lvnfjygve7] {
    font-size: var(--ct-font-size-xs);
    color: var(--ct-grey-mid);
}

.ct-audit-badge[b-lvnfjygve7] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--ct-radius-pill);
    font-size: var(--ct-font-size-xs);
    font-weight: 600;
    background: var(--ct-grey-mid);
    color: var(--ct-off-white);
}
.ct-audit-badge--maroon[b-lvnfjygve7] { background: var(--ct-maroon); }
.ct-audit-badge--gold[b-lvnfjygve7]   { background: var(--ct-gold); color: var(--ct-near-black); }
.ct-audit-badge--blue[b-lvnfjygve7]   { background: var(--ct-royal-blue); }

.ct-audit-timeline__body[b-lvnfjygve7] {
    font-size: var(--ct-font-size-sm);
    color: var(--ct-near-black);
}
.ct-audit-timeline__actor[b-lvnfjygve7] { font-weight: 600; }
.ct-audit-timeline__reason[b-lvnfjygve7] { color: var(--ct-grey-mid); margin-left: var(--ct-space-2); }
/* /Components/IosInstallHelpDialog.razor.rz.scp.css */
/* Plan 11-05 — iOS install help dialog scoped CSS.
   Brand discipline: Royal Blue #343579 headings, Gold #FFBB1C accent on the
   confirm button, Maroon #7D2248 reserved for warnings (none in this dialog),
   off-white #FAF7F2 background, near-black #1A1A1A body. NO #FFFFFF, NO
   #000000, NO purple — enforced by IosInstallHelpDialogTests regex. */

.ct-ios-install-dialog[b-rbcrpr1tcb]  .e-dialog {
    background-color: #FAF7F2;
    color: #1A1A1A;
    font-family: 'Source Sans 3', system-ui, sans-serif;
    border: 1px solid #343579;
}

.ct-ios-dialog-title[b-rbcrpr1tcb] {
    color: #343579;
    font-family: 'Crimson Pro', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.ct-ios-dialog-body[b-rbcrpr1tcb] {
    color: #1A1A1A;
    line-height: 1.5;
    padding: 0.25rem 0.5rem;
}

.ct-ios-dialog-intro[b-rbcrpr1tcb] {
    margin: 0 0 0.75rem 0;
}

.ct-ios-steps[b-rbcrpr1tcb] {
    list-style: decimal;
    padding-left: 1.25rem;
    margin: 0 0 1rem 0;
}

.ct-ios-steps li[b-rbcrpr1tcb] {
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

.ct-ios-steps li strong[b-rbcrpr1tcb] {
    color: #343579;
}

.ct-step-icon[b-rbcrpr1tcb] {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 0.25rem;
    color: #343579;
}

.ct-ios-dialog-note[b-rbcrpr1tcb] {
    font-size: 0.85rem;
    color: #555555;
    margin: 0.5rem 0;
}

.ct-ios-dialog-help[b-rbcrpr1tcb] {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
}

.ct-ios-dialog-help a[b-rbcrpr1tcb] {
    color: #343579;
    text-decoration: underline;
}

.ct-ios-dialog-close[b-rbcrpr1tcb] {
    background-color: #FFBB1C;
    color: #343579;
    border-color: #FFBB1C;
    font-weight: 600;
}

.ct-ios-dialog-close:hover[b-rbcrpr1tcb],
.ct-ios-dialog-close:focus[b-rbcrpr1tcb] {
    background-color: #E6A819;
    color: #343579;
    border-color: #E6A819;
}
/* /Demo/DemoRoleSwitcher.razor.rz.scp.css */
/* Demo mode bar — royal blue background, gold badge, no purple, no pure white/black */
.demo-bar[b-qi7dkvroym] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background-color: #343579;  /* --ct-royal-blue */
    color: #FAF7F2;             /* --ct-off-white */
    font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
    font-size: 0.8125rem;       /* 13px */
    line-height: 1;
    position: sticky;
    top: 0;
    z-index: 1100;              /* above header (1000) */
    border-bottom: 2px solid #FFBB1C; /* --ct-gold accent line */
}

.demo-bar__badge[b-qi7dkvroym] {
    display: inline-block;
    background-color: #FFBB1C; /* --ct-gold */
    color: #1A1A1A;            /* --ct-near-black */
    font-weight: 700;
    font-size: 0.6875rem;      /* 11px */
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.demo-bar__label[b-qi7dkvroym] {
    color: #FAF7F2;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Syncfusion dropdown override — keep it compact and on-brand */
[b-qi7dkvroym] .demo-persona-dropdown.e-ddl {
    min-width: 220px;
    max-width: 300px;
}

[b-qi7dkvroym] .demo-persona-dropdown .e-input-group {
    background-color: #1A1A1A !important;
    border-color: #FFBB1C !important;
    border-radius: 4px;
}

[b-qi7dkvroym] .demo-persona-dropdown .e-input-group input {
    color: #FAF7F2 !important;
    font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
    font-size: 0.8125rem;
    padding: 0.25rem 0.5rem;
    background-color: transparent !important;
}

[b-qi7dkvroym] .demo-persona-dropdown .e-input-group .e-ddl-icon {
    color: #FFBB1C !important;
}
/* /Layout/AdminLayout.razor.rz.scp.css */
.admin-hero[b-z1jvjintm2] {
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
    position: relative;
}

.admin-hero-content[b-z1jvjintm2] {
    padding: 1.5rem 2rem 1.25rem 2rem;
}

.admin-wordmark[b-z1jvjintm2] {
    font-family: var(--ct-font-display);
    color: var(--ct-off-white);
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.75rem;
}

.admin-tagline[b-z1jvjintm2] {
    font-family: var(--ct-font-body);
    color: var(--ct-off-white);
    opacity: 0.85;
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.admin-hero-accent[b-z1jvjintm2] {
    height: 4px;
    background: var(--ct-gold);
}

.admin-page[b-z1jvjintm2] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--ct-off-white);
    min-height: calc(100vh - 5rem);
}

.admin-main[b-z1jvjintm2] {
    flex: 1;
    background: var(--ct-off-white);
}

.admin-sidebar[b-z1jvjintm2] {
    background-image: linear-gradient(180deg, var(--ct-royal-blue) 0%, var(--ct-blue-dark) 70%);
}

.admin-content[b-z1jvjintm2] {
    padding: 1.5rem 2rem;
    color: var(--ct-near-black);
}

@media (min-width: 641px) {
    .admin-page[b-z1jvjintm2] {
        flex-direction: row;
    }

    .admin-sidebar[b-z1jvjintm2] {
        width: 250px;
        min-height: calc(100vh - 5rem);
        position: sticky;
        top: 0;
    }
}
/* /Layout/AdminNavMenu.razor.rz.scp.css */
/* F17-04-08: AdminNavMenu items as standalone button-style cards.
   Each link carries its own background and border so the row remains
   visible regardless of whether the parent .admin-sidebar gradient
   reaches the rendered DOM (a scoped-CSS / SW-cache issue surfaced
   on 2026-05-07 left the sidebar transparent and light-on-light text
   invisible). The card pattern is also the design we want long-term —
   matches typical SaaS admin sidebars and is easier to scan than bare
   underlined links. */

.admin-nav[b-xq6iw1qn45] {
    padding: 1rem 0.5rem;
}

.admin-nav-list[b-xq6iw1qn45] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.admin-nav-item[b-xq6iw1qn45] {
    margin: 0;
}

.admin-nav-link[b-xq6iw1qn45] {
    display: block;
    padding: 0.7rem 1rem;
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
    text-decoration: none;
    font-family: var(--ct-font-body);
    font-size: 0.975rem;
    font-weight: 600;
    border: 1px solid rgba(250, 247, 242, 0.18);
    border-radius: var(--ct-radius-sm);
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.admin-nav-link:hover[b-xq6iw1qn45],
.admin-nav-link:focus-visible[b-xq6iw1qn45] {
    background-color: var(--ct-blue-dark);
    border-color: var(--ct-gold);
    color: var(--ct-off-white);
}

.admin-nav-link.active[b-xq6iw1qn45] {
    background-color: var(--ct-blue-dark);
    color: var(--ct-gold);
    border-color: var(--ct-gold);
}

.admin-nav-label[b-xq6iw1qn45] {
    letter-spacing: 0.01em;
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Plan 15-03 — MainLayout scoped CSS.
   Most layout chrome lives in the global .ct-* rules in wwwroot/css/app.css
   (so 12-component-library.html and the live shell stay in sync). This file
   carries only the per-layout overrides that should NOT bleed into other
   layouts (e.g. AdminLayout). */

/* Tighten footer margin when there's no main content (e.g. login / pending). */
[b-1utwjrmhcp] .ct-main:empty + .ct-footer {
    margin-top: 0;
}

/* Make sure the focus highlight stays brand-correct even when components
   inside @Body grab focus via FocusOnNavigate. */
[b-1utwjrmhcp] h1:focus-visible {
    outline: 2px solid var(--ct-gold);
    outline-offset: 4px;
}

/* Plan 18-08 — legal footer NavLinks. Touch target ≥44px per WCAG SC 2.5.5.
   Source Sans 3 body font.
   F18-deploy fix (2026-05-25): the original color was --ct-near-black, which is
   the SAME color as the footer background — links rendered invisibly. Changed
   to --ct-off-white (matches the footer's body-text color, with an underline
   for actionable affordance). Hover flips to --ct-gold (matches the wordmark
   accent + WCAG-compliant contrast on the near-black footer surface). */
[b-1utwjrmhcp] .ct-footer__legal-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 8px;
    color: var(--ct-off-white);
    font-family: var(--ct-font-body);
    text-decoration: underline;
    text-underline-offset: 2px;
}

[b-1utwjrmhcp] .ct-footer__legal-link:hover,
[b-1utwjrmhcp] .ct-footer__legal-link:focus-visible {
    color: var(--ct-gold);
}

/* F18-deploy: app version display. Muted (grey-mid) so it doesn't compete with
   the wordmark + legal-link affordances; small font; tabular numerics so the
   build counter aligns cleanly across deploys. */
[b-1utwjrmhcp] .ct-footer__version {
    color: var(--ct-grey-mid);
    font-family: var(--ct-font-body);
    font-size: 0.85em;
    font-variant-numeric: tabular-nums;
    margin-left: 0.4rem;
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Plan 15-03 — NavMenu scoped CSS.
   Plan 20-01 F04 — labeled hamburger styles.
   Plan 20-01 F07 — ct-badge--primary (royal-blue, not warning-yellow). */
   Bootstrap5 d-none / d-md-flex / d-md-none drive the mobile-vs-desktop
   visibility split. The CSS here adds the mobile drawer animation and the
   hamburger button styling — both small enough to keep co-located. */

.ct-header__nav-link[b-y5nkxjtptm] {
    color: var(--ct-off-white);
    font-weight: 600;
    padding: var(--ct-space-2) var(--ct-space-3);
    border-radius: var(--ct-radius-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--ct-space-1);
}

.ct-header__nav-link:hover[b-y5nkxjtptm] {
    background: var(--ct-blue-dark);
    color: var(--ct-off-white);
    text-decoration: none;
}

.ct-header__nav-link.active[b-y5nkxjtptm] {
    background: var(--ct-blue-dark);
    border-bottom: 2px solid var(--ct-gold);
}

/* Hamburger button (mobile only — d-md-none on the element handles the
   hide/show, this CSS handles look).
   F17-07 M3 (TD F17-OD-C): pinned to ≥44×44px hit area for WCAG 2.5.5.
   Unscoped global rule lives in app.css for test discoverability; scoped
   rule here mirrors the minimums so the live DOM honors them even if the
   scoped-CSS pipeline shadows the global. */
.ct-nav-toggle[b-y5nkxjtptm] {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--ct-blue-light);
    color: var(--ct-off-white);
    padding: 10px 16px;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ct-radius-sm);
}
.ct-nav-toggle:hover[b-y5nkxjtptm] {
    background: var(--ct-blue-dark);
}

/* Mobile drawer — open / collapsed state classes are emitted from the
   @code-behind via MobileNavCssClass. */
.ct-mobile-nav--collapsed[b-y5nkxjtptm] {
    display: none;
}
.ct-mobile-nav--open[b-y5nkxjtptm] {
    display: block;
    position: absolute;
    top: var(--ct-header-height);
    left: 0;
    right: 0;
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
    padding: var(--ct-space-2) 0;
    box-shadow: var(--ct-shadow);
    z-index: 50;
}

/* F17-07 M3 (TD F17-OD-C): mobile drawer link hit area pinned to ≥44×44px
   for WCAG 2.5.5. Uses display: flex (not block) so min-height clamps a
   single-line item visibly. Unscoped global rule in app.css matches. */
.ct-mobile-nav--open .ct-mobile-nav__link[b-y5nkxjtptm] {
    display: flex;
    align-items: center;
    min-height: 44px;
    min-width: 44px;
    padding: 10px 24px;
    color: var(--ct-off-white);
    text-decoration: none;
}
.ct-mobile-nav--open .ct-mobile-nav__link:hover[b-y5nkxjtptm],
.ct-mobile-nav--open .ct-mobile-nav__link.active[b-y5nkxjtptm] {
    background: var(--ct-blue-dark);
}

/* Plan 20-01 F04 — labeled hamburger. Icon + "Menu" text side by side. */
.ct-nav-toggle--labeled[b-y5nkxjtptm] {
    gap: 6px;
    font-family: var(--ct-font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    min-height: 48px;
    min-width: 80px;
}
.ct-nav-toggle__icon[b-y5nkxjtptm] {
    font-size: 1.25rem;
    line-height: 1;
}
.ct-nav-toggle__label[b-y5nkxjtptm] {
    letter-spacing: 0.01em;
}

/* Plan 20-01 F07 — badge poller: royal-blue badge (not warning-yellow).
   .ct-badge (global) may default to a Bootstrap warning color; this
   override enforces the brand-correct royal-blue. */
.ct-badge--primary[b-y5nkxjtptm] {
    background: var(--ct-royal-blue) !important;
    color: var(--ct-off-white) !important;
    border: none;
}
/* /Pages/Admin/AuditLogPage.razor.rz.scp.css */
.al-heading[b-tku4qj9kty] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 0.5rem 0;
}

.al-subhead[b-tku4qj9kty] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0 0 1.5rem 0;
    max-width: 60ch;
}

.al-notice[b-tku4qj9kty] {
    background-color: rgba(255, 187, 28, 0.10);
    border-left: 4px solid var(--ct-gold);
    padding: 1rem 1.25rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-family: var(--ct-font-body);
    color: var(--ct-near-black);
}

.al-notice p[b-tku4qj9kty] {
    margin: 0 0 0.5rem 0;
    max-width: 70ch;
}

.al-notice p:last-child[b-tku4qj9kty] {
    margin-bottom: 0;
}

.al-notice a[b-tku4qj9kty] {
    color: var(--ct-royal-blue);
    text-decoration: underline;
}

.al-notice a:hover[b-tku4qj9kty] {
    color: var(--ct-blue-dark);
}

.al-grid-section[b-tku4qj9kty] {
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.al-form-heading[b-tku4qj9kty] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 1rem 0;
    font-size: 1.15rem;
}

.al-empty[b-tku4qj9kty] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0;
    padding: 1rem 0;
    font-style: italic;
}

/* Plan 17-09 (OD audit #11 / TD F17-OD-J): immutability banner.
   Background: --ct-maroon (#7D2248). Text: --ct-off-white (#FAF7F2).
   Contrast ratio ≈ 9.4:1 — WCAG 1.4.3 PASS AA.
   NOT red (#DC3545), NOT purple — maroon is the V01 secondary-accent
   token for "critical / data integrity" framing. */
.ct-immutability-banner[b-tku4qj9kty] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--ct-maroon);
    color: var(--ct-off-white);
    border-radius: var(--ct-radius);
    margin-bottom: 1.5rem;
    font-family: var(--ct-font-body);
    font-size: 0.9rem;
    line-height: 1.4;
}

.ct-immutability-banner__icon[b-tku4qj9kty] {
    color: inherit;
    flex-shrink: 0;
}

.ct-immutability-banner__text strong[b-tku4qj9kty] {
    font-weight: 700;
}
/* /Pages/Admin/Officers/ChangeOfficerPanel.razor.rz.scp.css */
/* Plan 19-05 — ChangeOfficerPanel scoped styles. */

.cop-panel[b-qy3yvtt2s1] {
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--ct-font-body);
}

.cop-banner[b-qy3yvtt2s1] {
    padding: 0.6rem 0.9rem;
    border-radius: 4px;
    border-left: 4px solid;
    font-size: 0.9rem;
}

.cop-banner-error[b-qy3yvtt2s1] {
    background-color: rgba(125, 34, 72, 0.10);
    color: var(--ct-maroon);
    border-left-color: var(--ct-maroon);
}

.cop-current-context[b-qy3yvtt2s1] {
    background: rgba(52, 53, 121, 0.05);
    border-radius: 4px;
    padding: 0.75rem 1rem;
}

.cop-context-label[b-qy3yvtt2s1] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ct-grey-mid);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.25rem 0;
}

.cop-context-value[b-qy3yvtt2s1] {
    margin: 0;
    color: var(--ct-near-black);
}

.cop-context-vacant[b-qy3yvtt2s1] {
    color: var(--ct-grey-mid);
    font-style: italic;
}

.cop-since[b-qy3yvtt2s1] {
    color: var(--ct-grey-mid);
    font-size: 0.875rem;
}

.cop-field[b-qy3yvtt2s1] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cop-label[b-qy3yvtt2s1] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ct-near-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cop-checkbox[b-qy3yvtt2s1] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--ct-royal-blue);
    flex-shrink: 0;
}

.cop-member-dropdown[b-qy3yvtt2s1] {
    min-height: 48px;
}

.cop-notes-input[b-qy3yvtt2s1] {
    min-height: 80px;
}

.cop-hint[b-qy3yvtt2s1] {
    font-size: 0.8rem;
    color: var(--ct-grey-mid);
    font-style: italic;
    margin: 0;
}

.cop-actions[b-qy3yvtt2s1] {
    display: flex;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.cop-btn-save[b-qy3yvtt2s1] {
    min-height: 52px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.cop-btn-cancel[b-qy3yvtt2s1] {
    min-height: 52px;
    padding: 0.6rem 1.25rem;
    font-size: 1rem;
}
/* /Pages/Admin/Officers/LodgeOfficerSlatePage.razor.rz.scp.css */
/* Plan 19-05 — Officer Slate page scoped styles.
   Palette: --ct-royal-blue (#343579), --ct-gold (#FFBB1C), --ct-maroon (#7D2248),
            --ct-off-white (#FAF7F2), --ct-near-black (#1A1A1A).
   No purple, no #FFFFFF, no #000000 per design-color-restrictions. */

.os-header[b-690pds6i7l] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.os-header-text[b-690pds6i7l] {
    flex: 1;
    min-width: 0;
}

.os-heading[b-690pds6i7l] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 0.25rem 0;
}

.os-subhead[b-690pds6i7l] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark, #555);
    margin: 0;
    max-width: 60ch;
}

.os-btn-elections[b-690pds6i7l] {
    white-space: nowrap;
    min-height: 48px;
    padding: 0.6rem 1.25rem;
    font-family: var(--ct-font-body);
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--ct-gold) !important;
    color: var(--ct-near-black) !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.os-banner[b-690pds6i7l] {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: var(--ct-font-body);
    border-left: 4px solid;
}

.os-banner-success[b-690pds6i7l] {
    background-color: rgba(255, 187, 28, 0.12);
    color: var(--ct-near-black);
    border-left-color: var(--ct-gold);
}

.os-banner-error[b-690pds6i7l] {
    background-color: rgba(125, 34, 72, 0.10);
    color: var(--ct-maroon);
    border-left-color: var(--ct-maroon);
}

.os-loading[b-690pds6i7l] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-mid);
    font-style: italic;
}

/* Table */
.os-table-section[b-690pds6i7l] {
    overflow-x: auto;
}

.os-table[b-690pds6i7l] {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ct-font-body);
    font-size: 0.95rem;
    background: var(--ct-off-white);
    border: 1px solid rgba(52, 53, 121, 0.15);
    border-radius: 4px;
}

.os-table thead th[b-690pds6i7l] {
    background-color: var(--ct-royal-blue);
    color: var(--ct-off-white);
    font-weight: 600;
    text-align: left;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.os-table tbody tr[b-690pds6i7l] {
    border-bottom: 1px solid rgba(52, 53, 121, 0.08);
}

.os-table tbody tr:last-child[b-690pds6i7l] {
    border-bottom: none;
}

.os-table tbody tr:nth-child(even)[b-690pds6i7l] {
    background-color: rgba(52, 53, 121, 0.03);
}

.os-table td[b-690pds6i7l] {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.os-col-role[b-690pds6i7l]   { width: 22%; }
.os-col-holder[b-690pds6i7l] { width: 36%; }
.os-col-since[b-690pds6i7l]  { width: 20%; }
.os-col-actions[b-690pds6i7l] { width: 22%; }

/* Role cell */
.os-role-name[b-690pds6i7l] {
    font-family: var(--ct-font-display);
    font-size: 1rem;
    color: var(--ct-near-black);
}

.os-badge-optional[b-690pds6i7l] {
    margin-left: 0.5rem;
    font-size: 0.72rem;
    font-family: var(--ct-font-body);
    color: var(--ct-grey-mid);
    border: 1px solid var(--ct-grey-mid);
    border-radius: 999px;
    padding: 0.1rem 0.4rem;
    vertical-align: middle;
}

/* Holder cell */
.os-holder-title[b-690pds6i7l] {
    font-size: 0.8rem;
    color: var(--ct-royal-blue);
    font-weight: 600;
    margin-right: 0.35rem;
}

.os-holder-name[b-690pds6i7l] {
    color: var(--ct-near-black);
}

/* Vacant warnings */
.os-vacant-warning[b-690pds6i7l] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #7A5000;
    background-color: rgba(255, 187, 28, 0.18);
    border: 1px solid var(--ct-gold);
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.os-warn-icon[b-690pds6i7l] {
    flex-shrink: 0;
    color: #7A5000;
}

.os-vacant-optional[b-690pds6i7l] {
    color: var(--ct-grey-mid);
    font-size: 0.875rem;
    font-style: italic;
}

.os-cell-none[b-690pds6i7l] {
    color: var(--ct-grey-mid);
}

/* Action buttons */
.os-btn-change[b-690pds6i7l] {
    min-height: 48px;
    min-width: 72px;
    padding: 0.5rem 1rem;
    font-family: var(--ct-font-body);
    font-size: 0.9rem;
    margin-right: 0.5rem;
    border: 1px solid var(--ct-royal-blue);
    color: var(--ct-royal-blue);
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
}

.os-btn-change:hover[b-690pds6i7l] {
    background-color: rgba(52, 53, 121, 0.08);
}

.os-btn-history[b-690pds6i7l] {
    background: none;
    border: none;
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-body);
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.5rem 0;
    min-height: 48px;
}

.os-btn-history:hover[b-690pds6i7l] {
    color: var(--ct-maroon);
}

/* Dialog overrides */
[b-690pds6i7l] .os-change-dialog .e-dlg-header-content,
[b-690pds6i7l] .os-history-dialog .e-dlg-header-content {
    background-color: var(--ct-royal-blue);
    color: var(--ct-off-white);
}

.os-dialog-title[b-690pds6i7l] {
    font-family: var(--ct-font-display);
    font-size: 1.1rem;
}
/* /Pages/Admin/Officers/NewElectionsWizardPage.razor.rz.scp.css */
/* Plan 19-05 — NewElectionsWizardPage scoped styles. */

.ew-header[b-57ym6x41ve] {
    margin-bottom: 1.5rem;
}

.ew-back-link[b-57ym6x41ve] {
    display: inline-block;
    font-family: var(--ct-font-body);
    color: var(--ct-royal-blue);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.ew-back-link:hover[b-57ym6x41ve] {
    text-decoration: underline;
}

.ew-heading[b-57ym6x41ve] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 0.4rem 0;
}

.ew-subhead[b-57ym6x41ve] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark, #555);
    max-width: 60ch;
    margin: 0;
}

/* Step indicator */
.ew-steps[b-57ym6x41ve] {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.ew-step[b-57ym6x41ve] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-family: var(--ct-font-body);
    font-size: 0.875rem;
    color: var(--ct-grey-mid);
    white-space: nowrap;
}

.ew-step-active[b-57ym6x41ve] {
    background-color: rgba(52, 53, 121, 0.10);
    color: var(--ct-royal-blue);
    font-weight: 700;
}

.ew-step-done[b-57ym6x41ve] {
    color: var(--ct-near-black);
}

.ew-step-num[b-57ym6x41ve] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    border: 2px solid currentColor;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ew-step-active .ew-step-num[b-57ym6x41ve] {
    background-color: var(--ct-royal-blue);
    color: var(--ct-off-white);
    border-color: var(--ct-royal-blue);
}

.ew-step-connector[b-57ym6x41ve] {
    flex: 1;
    height: 2px;
    background-color: rgba(52, 53, 121, 0.18);
    min-width: 1.5rem;
}

/* Banners */
.ew-banner[b-57ym6x41ve] {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 4px solid;
    font-family: var(--ct-font-body);
}

.ew-banner-error[b-57ym6x41ve] {
    background-color: rgba(125, 34, 72, 0.10);
    color: var(--ct-maroon);
    border-left-color: var(--ct-maroon);
}

/* Sections */
.ew-section[b-57ym6x41ve] {
    background: var(--ct-off-white);
    border: 1px solid rgba(52, 53, 121, 0.12);
    border-radius: 6px;
    padding: 1.5rem;
}

.ew-section-heading[b-57ym6x41ve] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 0.4rem 0;
}

.ew-section-subhead[b-57ym6x41ve] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark, #555);
    max-width: 60ch;
    margin: 0 0 1.5rem 0;
}

/* Step 1 */
.ew-field[b-57ym6x41ve] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.ew-label[b-57ym6x41ve] {
    font-family: var(--ct-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ct-near-black);
}

.ew-date-picker[b-57ym6x41ve] {
    max-width: 280px;
}

/* Step 2 — role grid */
.ew-loading[b-57ym6x41ve] {
    color: var(--ct-grey-mid);
    font-style: italic;
    font-family: var(--ct-font-body);
}

.ew-role-grid[b-57ym6x41ve] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ew-role-row[b-57ym6x41ve] {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 1rem;
}

.ew-role-label[b-57ym6x41ve] {
    font-family: var(--ct-font-display);
    font-size: 0.95rem;
    color: var(--ct-near-black);
    font-weight: 500;
}

.ew-badge-optional[b-57ym6x41ve] {
    margin-left: 0.4rem;
    font-size: 0.72rem;
    font-family: var(--ct-font-body);
    color: var(--ct-grey-mid);
    border: 1px solid var(--ct-grey-mid);
    border-radius: 999px;
    padding: 0.1rem 0.4rem;
}

.ew-member-picker[b-57ym6x41ve] {
    min-height: 48px;
}

/* Step 3 — review table */
.ew-review-table-wrap[b-57ym6x41ve] {
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.ew-review-table[b-57ym6x41ve] {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ct-font-body);
    font-size: 0.9rem;
}

.ew-review-table thead th[b-57ym6x41ve] {
    background-color: rgba(52, 53, 121, 0.08);
    color: var(--ct-near-black);
    font-weight: 600;
    text-align: left;
    padding: 0.6rem 0.9rem;
    border-bottom: 2px solid rgba(52, 53, 121, 0.15);
}

.ew-review-table tbody td[b-57ym6x41ve] {
    padding: 0.55rem 0.9rem;
    border-bottom: 1px solid rgba(52, 53, 121, 0.07);
    vertical-align: middle;
}

.ew-col-role[b-57ym6x41ve] {
    font-family: var(--ct-font-display);
    min-width: 160px;
}

.ew-row-changed[b-57ym6x41ve] {
    background-color: rgba(255, 187, 28, 0.07);
}

.ew-new-highlighted[b-57ym6x41ve] {
    font-weight: 600;
    color: var(--ct-royal-blue);
}

/* WM Past Master notice */
.ew-pm-notice[b-57ym6x41ve] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background-color: rgba(52, 53, 121, 0.07);
    border: 1px solid rgba(52, 53, 121, 0.18);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-family: var(--ct-font-body);
    font-size: 0.9rem;
    color: var(--ct-near-black);
}

.ew-pm-icon[b-57ym6x41ve] {
    color: var(--ct-royal-blue);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* Navigation row */
.ew-nav[b-57ym6x41ve] {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.ew-btn-back[b-57ym6x41ve] {
    background: none;
    border: none;
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-body);
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0;
    text-decoration: underline;
    min-height: 48px;
}

.ew-btn-next[b-57ym6x41ve] {
    min-height: 48px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.ew-btn-install[b-57ym6x41ve] {
    min-height: 52px;
    padding: 0.7rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
}
/* /Pages/Admin/Officers/OfficerHistoryDrawer.razor.rz.scp.css */
/* Plan 19-05 — OfficerHistoryDrawer scoped styles. */

.ohd-drawer[b-3m090l2m47] {
    font-family: var(--ct-font-body);
    padding: 0.75rem 0;
}

.ohd-loading[b-3m090l2m47],
.ohd-empty[b-3m090l2m47] {
    color: var(--ct-grey-mid);
    font-style: italic;
}

.ohd-banner[b-3m090l2m47] {
    padding: 0.6rem 0.9rem;
    border-radius: 4px;
    border-left: 4px solid;
}

.ohd-banner-error[b-3m090l2m47] {
    background-color: rgba(125, 34, 72, 0.10);
    color: var(--ct-maroon);
    border-left-color: var(--ct-maroon);
}

.ohd-list[b-3m090l2m47] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ohd-entry[b-3m090l2m47] {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(52, 53, 121, 0.10);
}

.ohd-entry:last-child[b-3m090l2m47] {
    border-bottom: none;
}

.ohd-entry-holder[b-3m090l2m47] {
    margin-bottom: 0.3rem;
}

.ohd-title[b-3m090l2m47] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ct-royal-blue);
    margin-right: 0.3rem;
}

.ohd-name[b-3m090l2m47] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ct-near-black);
}

.ohd-vacant[b-3m090l2m47] {
    color: var(--ct-grey-mid);
    font-style: italic;
}

.ohd-entry-dates[b-3m090l2m47] {
    font-size: 0.875rem;
    color: var(--ct-near-black);
    margin-bottom: 0.3rem;
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    align-items: baseline;
}

.ohd-date-label[b-3m090l2m47] {
    color: var(--ct-grey-mid);
    font-size: 0.8rem;
}

.ohd-date[b-3m090l2m47] {
    font-weight: 500;
}

.ohd-notes[b-3m090l2m47] {
    font-size: 0.85rem;
    color: var(--ct-grey-mid);
    font-style: italic;
    margin: 0.25rem 0;
}

.ohd-changed-by[b-3m090l2m47] {
    font-size: 0.78rem;
    color: var(--ct-grey-mid);
    margin: 0;
}
/* /Pages/Admin/Officers/OfficerSlatesIndexPage.razor.rz.scp.css */
/* F18-deploy fix — Officer Slates index page. Pattern matches UserSearchPage /
   RegionAllowlistPage admin-tier styling: warm off-white surface, royal-blue
   accents, generous touch targets per CableTow CLAUDE.md "ages 2 to 102" UI
   constraint. */

.osi-heading[b-gm1aq0ls0k] {
    color: var(--ct-royal-blue);
    font-family: 'Crimson Pro', Georgia, serif;
    margin-bottom: 0.25rem;
}

.osi-subhead[b-gm1aq0ls0k] {
    color: var(--ct-near-black);
    max-width: 60ch;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.osi-banner[b-gm1aq0ls0k] {
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.osi-banner-error[b-gm1aq0ls0k] {
    background: rgba(125, 34, 72, 0.08);
    border: 1px solid var(--ct-maroon);
    color: var(--ct-maroon);
}

.osi-filter[b-gm1aq0ls0k] {
    background: var(--ct-off-white);
    border: 1px solid rgba(52, 53, 121, 0.18);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.osi-filter-heading[b-gm1aq0ls0k] {
    color: var(--ct-royal-blue);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.osi-filter-row[b-gm1aq0ls0k] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.osi-filter-field[b-gm1aq0ls0k] {
    flex: 1 1 280px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.osi-filter-field label[b-gm1aq0ls0k] {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--ct-near-black);
}

.osi-loading[b-gm1aq0ls0k],
.osi-empty[b-gm1aq0ls0k] {
    color: var(--ct-grey-mid);
    font-style: italic;
    padding: 1rem 0;
}

.osi-lodge-list[b-gm1aq0ls0k] {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(52, 53, 121, 0.18);
    border-radius: 8px;
    background: var(--ct-off-white);
    overflow: hidden;
}

.osi-lodge-row[b-gm1aq0ls0k] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    min-height: 56px; /* WCAG 2.5.5 — 48px+ target, plus padding headroom */
    border-bottom: 1px solid rgba(52, 53, 121, 0.12);
}

.osi-lodge-row:last-child[b-gm1aq0ls0k] {
    border-bottom: none;
}

.osi-lodge-row:hover[b-gm1aq0ls0k] {
    background: rgba(52, 53, 121, 0.04);
}

.osi-lodge-row__name[b-gm1aq0ls0k] {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex: 1 1 auto;
    min-width: 0;
}

.osi-lodge-row__name-text[b-gm1aq0ls0k] {
    font-weight: 600;
    color: var(--ct-near-black);
    font-size: 1.05rem;
}

.osi-lodge-row__number[b-gm1aq0ls0k] {
    color: var(--ct-grey-mid);
    font-family: 'Source Sans 3', sans-serif;
    font-variant-numeric: tabular-nums;
}

.osi-lodge-row__actions[b-gm1aq0ls0k] {
    flex: 0 0 auto;
}

.osi-lodge-row__link[b-gm1aq0ls0k] {
    color: var(--ct-royal-blue);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    min-height: 44px; /* WCAG 2.5.5 */
    display: inline-flex;
    align-items: center;
}

.osi-lodge-row__link:hover[b-gm1aq0ls0k],
.osi-lodge-row__link:focus-visible[b-gm1aq0ls0k] {
    background: rgba(52, 53, 121, 0.12);
    outline: 2px solid var(--ct-gold);
    outline-offset: 2px;
}
/* /Pages/Admin/PendingApprovalsPage.razor.rz.scp.css */
.pa-header[b-7xhwsyvs2n] {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 0 0 0.5rem 0;
}

.pa-heading[b-7xhwsyvs2n] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0;
}

.pa-count-badge[b-7xhwsyvs2n] {
    font-family: var(--ct-font-body);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background-color: rgba(255, 187, 28, 0.18);
    color: var(--ct-near-black);
    border: 1px solid var(--ct-gold);
    letter-spacing: 0.02em;
}

.pa-subhead[b-7xhwsyvs2n] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0 0 1.5rem 0;
    max-width: 60ch;
}

.pa-banner[b-7xhwsyvs2n] {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: var(--ct-font-body);
    border-left: 4px solid;
}

.pa-banner-success[b-7xhwsyvs2n] {
    background-color: rgba(255, 187, 28, 0.12);
    color: var(--ct-near-black);
    border-left-color: var(--ct-gold);
}

.pa-banner-reject[b-7xhwsyvs2n] {
    background-color: rgba(125, 34, 72, 0.10);
    color: var(--ct-maroon);
    border-left-color: var(--ct-maroon);
}

.pa-banner-error[b-7xhwsyvs2n] {
    background-color: rgba(125, 34, 72, 0.10);
    color: var(--ct-maroon);
    border-left-color: var(--ct-maroon);
}

.pa-grid-section[b-7xhwsyvs2n] {
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.pa-section-heading[b-7xhwsyvs2n] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 1rem 0;
    font-size: 1.15rem;
}

.pa-empty[b-7xhwsyvs2n] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0;
    padding: 1rem 0;
}

.pa-empty-inline[b-7xhwsyvs2n] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    font-style: italic;
}

.pa-lodges[b-7xhwsyvs2n] {
    font-family: var(--ct-font-body);
    color: var(--ct-near-black);
}

.pa-status[b-7xhwsyvs2n] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--ct-font-body);
}

.pa-status-pending[b-7xhwsyvs2n] {
    background-color: rgba(52, 53, 121, 0.10);
    color: var(--ct-royal-blue);
    border: 1px solid var(--ct-royal-blue);
}

.pa-dialog-title[b-7xhwsyvs2n] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    font-size: 1.15rem;
}

.pa-review-grid[b-7xhwsyvs2n] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 720px) {
    .pa-review-grid[b-7xhwsyvs2n] {
        grid-template-columns: 1fr;
    }
}

.pa-review-pane[b-7xhwsyvs2n] {
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-radius: 6px;
    padding: 1rem 1.25rem;
}

.pa-pane-heading[b-7xhwsyvs2n] {
    font-family: var(--ct-font-display);
    color: var(--ct-royal-blue);
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.pa-detail-list[b-7xhwsyvs2n] {
    margin: 0;
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 1rem;
    row-gap: 0.5rem;
    font-family: var(--ct-font-body);
}

.pa-detail-list dt[b-7xhwsyvs2n] {
    color: var(--ct-grey-dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.pa-detail-list dd[b-7xhwsyvs2n] {
    color: var(--ct-near-black);
    margin: 0;
    word-break: break-word;
}

.pa-membership-list[b-7xhwsyvs2n] {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pa-membership-list li[b-7xhwsyvs2n] {
    margin-bottom: 0.25rem;
}

.pa-membership-role[b-7xhwsyvs2n] {
    margin-left: 0.5rem;
    color: var(--ct-grey-dark);
    font-size: 0.85rem;
}

.pa-verify-instruction[b-7xhwsyvs2n] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
}

.pa-portal-link[b-7xhwsyvs2n] {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: var(--ct-font-body);
    color: var(--ct-royal-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--ct-royal-blue);
    padding-bottom: 0.1rem;
}

.pa-portal-link:hover[b-7xhwsyvs2n] {
    color: var(--ct-blue-dark);
    border-bottom-color: var(--ct-blue-dark);
}

.pa-field-label[b-7xhwsyvs2n] {
    display: block;
    font-family: var(--ct-font-body);
    font-size: 0.85rem;
    color: var(--ct-grey-dark);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}

.pa-action-row[b-7xhwsyvs2n] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

[b-7xhwsyvs2n] .pa-btn-approve {
    background-color: var(--ct-royal-blue);
    border-color: var(--ct-blue-dark);
    color: var(--ct-off-white);
}

[b-7xhwsyvs2n] .pa-btn-approve:hover:not(:disabled) {
    background-color: var(--ct-blue-dark);
    border-color: var(--ct-blue-dark);
    color: var(--ct-off-white);
}

[b-7xhwsyvs2n] .pa-btn-reject {
    background-color: var(--ct-maroon);
    border-color: var(--ct-maroon);
    color: var(--ct-off-white);
}

[b-7xhwsyvs2n] .pa-btn-reject:hover:not(:disabled) {
    background-color: #5e1936;
    border-color: #5e1936;
    color: var(--ct-off-white);
}
/* /Pages/Admin/RegionAllowlistPage.razor.rz.scp.css */
.ra-heading[b-qgq2693p6i] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 0.5rem 0;
}

.ra-subhead[b-qgq2693p6i] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0 0 1.5rem 0;
    max-width: 60ch;
}

.ra-banner[b-qgq2693p6i] {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: var(--ct-font-body);
    border-left: 4px solid;
}

.ra-banner-success[b-qgq2693p6i] {
    background-color: rgba(255, 187, 28, 0.12);
    color: var(--ct-near-black);
    border-left-color: var(--ct-gold);
}

.ra-banner-error[b-qgq2693p6i] {
    background-color: rgba(125, 34, 72, 0.10);
    color: var(--ct-maroon);
    border-left-color: var(--ct-maroon);
}

.ra-summary[b-qgq2693p6i] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--ct-grey-light);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-family: var(--ct-font-body);
    color: var(--ct-near-black);
}

.ra-summary-stat strong[b-qgq2693p6i] {
    color: var(--ct-royal-blue);
    font-weight: 700;
    margin-right: 0.25rem;
}

.ra-summary-divider[b-qgq2693p6i] {
    color: var(--ct-grey-mid);
}

.ra-summary-muted[b-qgq2693p6i] {
    color: var(--ct-grey-dark);
}

.ra-add-form[b-qgq2693p6i],
.ra-grid-section[b-qgq2693p6i] {
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.ra-form-heading[b-qgq2693p6i] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 1rem 0;
    font-size: 1.15rem;
}

.ra-form-row[b-qgq2693p6i] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.ra-form-field[b-qgq2693p6i] {
    display: flex;
    flex-direction: column;
    min-width: 160px;
}

.ra-form-field-wide[b-qgq2693p6i] {
    min-width: 260px;
    flex: 1;
}

.ra-form-field-action[b-qgq2693p6i] {
    align-self: flex-end;
}

.ra-form-field label[b-qgq2693p6i] {
    font-family: var(--ct-font-body);
    font-size: 0.85rem;
    color: var(--ct-grey-dark);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}

.ra-empty[b-qgq2693p6i] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0;
    padding: 1rem 0;
}

.ra-status[b-qgq2693p6i] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--ct-font-body);
}

.ra-status-active[b-qgq2693p6i] {
    background-color: rgba(52, 53, 121, 0.10);
    color: var(--ct-royal-blue);
    border: 1px solid var(--ct-royal-blue);
}

.ra-status-inactive[b-qgq2693p6i] {
    background-color: rgba(153, 153, 153, 0.18);
    color: var(--ct-grey-dark);
    border: 1px solid var(--ct-grey-mid);
}

[b-qgq2693p6i] .ra-btn-primary {
    background-color: var(--ct-royal-blue);
    border-color: var(--ct-blue-dark);
    color: var(--ct-off-white);
}

[b-qgq2693p6i] .ra-btn-primary:hover {
    background-color: var(--ct-blue-dark);
    border-color: var(--ct-blue-dark);
}

[b-qgq2693p6i] .ra-btn-deactivate {
    background-color: var(--ct-maroon);
    border-color: var(--ct-maroon);
    color: var(--ct-off-white);
}

[b-qgq2693p6i] .ra-btn-deactivate:hover {
    background-color: #5e1936;
    border-color: #5e1936;
    color: var(--ct-off-white);
}

[b-qgq2693p6i] .ra-btn-reactivate {
    background-color: var(--ct-royal-blue);
    border-color: var(--ct-blue-dark);
    color: var(--ct-off-white);
}

[b-qgq2693p6i] .ra-btn-reactivate:hover {
    background-color: var(--ct-blue-dark);
    border-color: var(--ct-blue-dark);
}
/* /Pages/Admin/UserSearchPage.razor.rz.scp.css */
.us-heading[b-2sa5lsp8xz] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 0.5rem 0;
}

.us-subhead[b-2sa5lsp8xz] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0 0 1.5rem 0;
    max-width: 60ch;
}

.us-banner[b-2sa5lsp8xz] {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: var(--ct-font-body);
    border-left: 4px solid;
}

.us-banner-success[b-2sa5lsp8xz] {
    background-color: rgba(255, 187, 28, 0.12);
    color: var(--ct-near-black);
    border-left-color: var(--ct-gold);
}

.us-banner-error[b-2sa5lsp8xz] {
    background-color: rgba(125, 34, 72, 0.10);
    color: var(--ct-maroon);
    border-left-color: var(--ct-maroon);
}

.us-search-form[b-2sa5lsp8xz],
.us-grid-section[b-2sa5lsp8xz],
.us-detail[b-2sa5lsp8xz] {
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.us-form-heading[b-2sa5lsp8xz] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 1rem 0;
    font-size: 1.15rem;
}

.us-search-note[b-2sa5lsp8xz] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.us-form-row[b-2sa5lsp8xz] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.us-form-field[b-2sa5lsp8xz] {
    display: flex;
    flex-direction: column;
    min-width: 160px;
}

.us-form-field-wide[b-2sa5lsp8xz] {
    min-width: 320px;
    flex: 1;
}

.us-form-field-action[b-2sa5lsp8xz] {
    align-self: flex-end;
}

.us-form-field label[b-2sa5lsp8xz] {
    font-family: var(--ct-font-body);
    font-size: 0.85rem;
    color: var(--ct-grey-dark);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}

.us-detail-grid[b-2sa5lsp8xz] {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 1rem;
    font-family: var(--ct-font-body);
    margin: 0 0 1.5rem 0;
}

.us-detail-grid dt[b-2sa5lsp8xz] {
    font-weight: 600;
    color: var(--ct-grey-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    align-self: center;
}

.us-detail-grid dd[b-2sa5lsp8xz] {
    margin: 0;
    color: var(--ct-near-black);
}

.us-pill[b-2sa5lsp8xz] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--ct-font-body);
    background-color: rgba(52, 53, 121, 0.10);
    color: var(--ct-royal-blue);
    border: 1px solid var(--ct-royal-blue);
}

.us-section-heading[b-2sa5lsp8xz] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 1.5rem 0 0.75rem 0;
    font-size: 1.05rem;
}

.us-danger-heading[b-2sa5lsp8xz] {
    color: var(--ct-maroon);
}

.us-flag-note[b-2sa5lsp8xz],
.us-danger-note[b-2sa5lsp8xz] {
    font-family: var(--ct-font-body);
    color: var(--ct-grey-dark);
    font-size: 0.9rem;
    margin: 0 0 0.75rem 0;
    max-width: 70ch;
}

.us-danger-note[b-2sa5lsp8xz] {
    color: var(--ct-maroon);
}

.us-flag-row[b-2sa5lsp8xz] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.us-flag-cell[b-2sa5lsp8xz] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ct-font-body);
    color: var(--ct-near-black);
}

.us-flag-label[b-2sa5lsp8xz] {
    font-weight: 600;
    font-size: 0.95rem;
}

.us-effective[b-2sa5lsp8xz] {
    font-family: var(--ct-font-body);
    color: var(--ct-near-black);
    background-color: rgba(255, 187, 28, 0.12);
    border-left: 4px solid var(--ct-gold);
    padding: 0.5rem 0.75rem;
    margin: 0.75rem 0 0 0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.us-audit-list[b-2sa5lsp8xz] {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--ct-font-body);
    color: var(--ct-near-black);
    border: 1px solid var(--ct-grey-light);
    border-radius: 4px;
    overflow: hidden;
}

.us-audit-list li[b-2sa5lsp8xz] {
    display: grid;
    grid-template-columns: 11rem 5rem 1fr;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--ct-grey-light);
    font-size: 0.9rem;
}

.us-audit-list li:last-child[b-2sa5lsp8xz] {
    border-bottom: none;
}

.us-audit-when[b-2sa5lsp8xz] {
    color: var(--ct-grey-dark);
    font-variant-numeric: tabular-nums;
}

.us-audit-kind[b-2sa5lsp8xz] {
    color: var(--ct-royal-blue);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    align-self: center;
}

.us-audit-detail[b-2sa5lsp8xz] {
    color: var(--ct-near-black);
}

.us-muted[b-2sa5lsp8xz] {
    color: var(--ct-grey-dark);
    font-family: var(--ct-font-body);
    font-style: italic;
}

.us-dialog-error[b-2sa5lsp8xz] {
    color: var(--ct-maroon);
    font-family: var(--ct-font-body);
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

[b-2sa5lsp8xz] .us-btn-primary {
    background-color: var(--ct-royal-blue);
    border-color: var(--ct-blue-dark);
    color: var(--ct-off-white);
}

[b-2sa5lsp8xz] .us-btn-primary:hover {
    background-color: var(--ct-blue-dark);
    border-color: var(--ct-blue-dark);
}

[b-2sa5lsp8xz] .us-btn-link {
    background-color: transparent;
    border: none;
    color: var(--ct-royal-blue);
    text-decoration: underline;
    padding: 0.25rem 0.5rem;
}

[b-2sa5lsp8xz] .us-btn-link:hover {
    color: var(--ct-blue-dark);
    background-color: rgba(52, 53, 121, 0.06);
}

[b-2sa5lsp8xz] .us-btn-danger {
    background-color: var(--ct-maroon);
    border-color: var(--ct-maroon);
    color: var(--ct-off-white);
}

[b-2sa5lsp8xz] .us-btn-danger:hover {
    background-color: #5e1936;
    border-color: #5e1936;
    color: var(--ct-off-white);
}
/* /Pages/Dashboard/OrganizerDashboardPage.razor.rz.scp.css */
/* Plan 16-01 — /dashboard page styles. CSS-isolation per F15 pattern.
   Brand restrictions: no #FFFFFF, no #000000, no purple. All colors flow
   through tokens defined in wwwroot/css/app.css. */

.ct-dashboard-shell[b-d4photftw7] {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

.ct-dashboard-intro[b-d4photftw7] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--ct-space-4);
    flex-wrap: wrap;
    margin-bottom: var(--ct-space-5);
}
.ct-dashboard-intro h1[b-d4photftw7] {
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-display);
    margin: 0;
}
.ct-dashboard-intro .ct-text-muted[b-d4photftw7] {
    color: var(--ct-grey-dark);
    margin: 0;
}

.ct-quick-actions[b-d4photftw7] {
    display: flex;
    gap: var(--ct-space-3);
    flex-wrap: wrap;
}

.ct-plan-row[b-d4photftw7] {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--ct-space-4);
    padding: var(--ct-space-3) 0;
    border-bottom: 1px solid var(--ct-grey-light);
}
.ct-plan-row:last-child[b-d4photftw7] { border-bottom: none; }
.ct-plan-row__title[b-d4photftw7] {
    font-family: var(--ct-font-display);
    font-weight: 700;
    color: var(--ct-near-black);
}
.ct-plan-row__meta[b-d4photftw7] {
    font-size: var(--ct-font-size-sm);
    color: var(--ct-grey-dark);
    margin-top: var(--ct-space-1);
}

.ct-dashboard-empty[b-d4photftw7] {
    text-align: center;
    padding: var(--ct-space-6) var(--ct-space-4);
}
.ct-dashboard-empty p[b-d4photftw7] {
    color: var(--ct-grey-dark);
    margin: 0 0 var(--ct-space-3) 0;
}

.ct-dashboard-loading[b-d4photftw7] {
    display: flex;
    flex-direction: column;
    gap: var(--ct-space-3);
    margin-top: var(--ct-space-5);
}
.ct-skeleton-card[b-d4photftw7] {
    height: 96px;
    background: var(--ct-grey-light);
    border-radius: var(--ct-radius);
    opacity: 0.6;
    animation: ct-pulse-b-d4photftw7 1.6s ease-in-out infinite;
}

.ct-dashboard-error[b-d4photftw7] {
    text-align: center;
    padding: var(--ct-space-6) var(--ct-space-4);
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-left: 4px solid var(--ct-danger);
    border-radius: var(--ct-radius);
    margin-top: var(--ct-space-5);
}
.ct-dashboard-error p[b-d4photftw7] {
    color: var(--ct-near-black);
    margin: 0 0 var(--ct-space-3) 0;
}

@keyframes ct-pulse-b-d4photftw7 {
    0%, 100% { opacity: 0.45; }
    50%      { opacity: 0.8; }
}
/* /Pages/Home.razor.rz.scp.css */
/* F17-04-01 — Home landing page hero. Brand-correct: Royal Blue body / Gold
   primary / Maroon ghost-link hover; --ct-near-black foreground; --ct-off-white
   background already inherited from layout shell. No purples, no pure white,
   no pure black. */

.ct-hero[b-bl2tfbmkp0] {
    padding: 4rem 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.ct-hero__inner[b-bl2tfbmkp0] {
    max-width: 42rem;
}

.ct-hero__title[b-bl2tfbmkp0] {
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--ct-royal-blue);
    margin: 0 0 1.25rem;
}

.ct-hero__lead[b-bl2tfbmkp0] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ct-near-black);
    margin: 0 0 2rem;
}

.ct-hero__cta[b-bl2tfbmkp0] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.5rem;
}

.ct-hero__small[b-bl2tfbmkp0] {
    font-size: 0.875rem;
    color: var(--ct-grey-mid);
    margin: 0;
}
/* /Pages/Legal/PrivacyPolicy.razor.rz.scp.css */
/* Plan 18-08 — Privacy-specific overrides on top of the shared legal styles
   defined in TermsOfService.razor.css. */

/* Emphasis variant of the plain-box for the load-bearing PII-discipline promise. */
.ct-legal__plain-box--emphasis[b-04rgp5wa0a] {
    border-left-color: var(--ct-royal-blue);
    background-color: #eef0f8; /* royal-blue tinted fallback */
}

.ct-legal__plain-box--emphasis .ct-legal__plain-label[b-04rgp5wa0a] {
    color: var(--ct-royal-blue);
}

.ct-legal__subsection-title[b-04rgp5wa0a] {
    font-family: var(--ct-font-display);
    font-size: var(--ct-font-size-lg);
    font-weight: 600;
    color: var(--ct-near-black);
    margin: var(--ct-space-4) 0 var(--ct-space-2);
}

.ct-legal code[b-04rgp5wa0a] {
    font-size: 0.9em;
    background-color: #eeeeee; /* neutral grey fallback */
    padding: 0.1em 0.4em;
    border-radius: 3px;
    font-family: ui-monospace, "Cascadia Code", monospace;
    color: var(--ct-near-black);
}
/* /Pages/Legal/TermsOfService.razor.rz.scp.css */
/* Plan 18-08 — Legal pages shared styles (scoped to TermsOfService + PrivacyPolicy via ::deep from their common ancestor).
   Placed here because TermsOfService is the primary legal-style carrier; PrivacyPolicy.razor.css adds overrides only. */

:root .ct-legal[b-85iy36wit0],
main.ct-legal[b-85iy36wit0] {
    background: var(--ct-off-white);
    padding: var(--ct-space-8) var(--ct-space-4);
    min-height: calc(100vh - var(--ct-header-height) - 60px);
}

.ct-legal__container[b-85iy36wit0] {
    max-width: 65ch;
    margin: 0 auto;
    color: var(--ct-near-black);
    font-family: var(--ct-font-body);
    line-height: 1.7;
}

.ct-legal__header[b-85iy36wit0] {
    margin-bottom: var(--ct-space-8);
    border-bottom: 2px solid var(--ct-gold);
    padding-bottom: var(--ct-space-5);
}

.ct-legal__title[b-85iy36wit0] {
    font-family: var(--ct-font-display);
    font-size: var(--ct-font-size-3xl);
    font-weight: 700;
    color: var(--ct-royal-blue);
    margin: 0 0 var(--ct-space-2);
    line-height: 1.2;
}

.ct-legal__effective[b-85iy36wit0] {
    font-size: var(--ct-font-size-sm);
    color: var(--ct-grey-mid);
    margin: 0 0 var(--ct-space-4);
}

.ct-legal__intro[b-85iy36wit0] {
    font-size: var(--ct-font-size-base);
    color: var(--ct-near-black);
    margin: 0;
}

.ct-legal__section[b-85iy36wit0] {
    margin-bottom: var(--ct-space-8);
}

.ct-legal__section-title[b-85iy36wit0] {
    font-family: var(--ct-font-display);
    font-size: var(--ct-font-size-xl);
    font-weight: 700;
    color: var(--ct-royal-blue);
    margin: 0 0 var(--ct-space-3);
    line-height: 1.3;
}

/* Plain-English summary box */
.ct-legal__plain-box[b-85iy36wit0] {
    border-left: 4px solid var(--ct-gold);
    border-radius: 0 var(--ct-radius-sm) var(--ct-radius-sm) 0;
    padding: var(--ct-space-3) var(--ct-space-4);
    margin-bottom: var(--ct-space-4);
    background-color: #fef9ee; /* gold-tinted fallback; color-mix not safe in Blazor scoped CSS */
}

.ct-legal__plain-label[b-85iy36wit0] {
    font-size: var(--ct-font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ct-royal-blue);
    margin: 0 0 var(--ct-space-2);
}

.ct-legal__plain-box p:last-child[b-85iy36wit0] {
    margin: 0;
}

.ct-legal__plain[b-85iy36wit0] {
    font-size: var(--ct-font-size-base);
    color: var(--ct-near-black);
    margin-bottom: var(--ct-space-3);
}

.ct-legal__list[b-85iy36wit0] {
    padding-left: var(--ct-space-5);
    margin: var(--ct-space-3) 0;
}

.ct-legal__list li[b-85iy36wit0] {
    margin-bottom: var(--ct-space-2);
}

.ct-legal a[b-85iy36wit0] {
    color: var(--ct-royal-blue);
    text-decoration: underline;
}

.ct-legal a:hover[b-85iy36wit0] {
    color: var(--ct-blue-dark, #252566);
}

@media (max-width: 640px) {
    .ct-legal[b-85iy36wit0] {
        padding: var(--ct-space-5) var(--ct-space-3);
    }

    .ct-legal__title[b-85iy36wit0] {
        font-size: var(--ct-font-size-2xl);
    }
}
/* /Pages/NotFound.razor.rz.scp.css */
/* Plan 17-09 (OD audit #12 / TD F17-OD-K): branded 404 page.
   Matches F17-04-01 Home hero design language — dark royal-blue gradient,
   square-and-compass watermark, Crimson Pro heading, Source Sans 3 body.

   BRAND AUDIT:
   - Background: linear-gradient(135deg, --ct-royal-blue, --ct-blue-dark) — NO purple
   - Foreground: --ct-off-white (#FAF7F2) — NOT pure white #FFFFFF
   - Heading: Crimson Pro; body: Source Sans 3
   - CTA accent: --ct-gold (#FFBB1C) for primary button border/ring on dark bg
   - NO #370C3E purple, NO #FFFFFF, NO #000000 */

.ct-notfound[b-ltbe903xut] {
    min-height: calc(100vh - var(--ct-header-height, 64px) - 60px);
    background: linear-gradient(135deg, var(--ct-royal-blue) 0%, var(--ct-blue-dark) 100%);
    color: var(--ct-off-white);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ct-notfound__watermark[b-ltbe903xut] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.08;
    transform: scale(1.4);
    pointer-events: none;
}

.ct-notfound__watermark img[b-ltbe903xut] {
    width: 100%;
    max-width: 560px;
    height: auto;
}

.ct-notfound__content[b-ltbe903xut] {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.ct-notfound__code[b-ltbe903xut] {
    font-family: var(--ct-font-display);
    font-size: 6rem;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 0.5rem;
    opacity: 0.85;
    color: var(--ct-off-white);
}

.ct-notfound__heading[b-ltbe903xut] {
    font-family: var(--ct-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.15;
    color: var(--ct-off-white);
    margin: 0 0 1rem;
}

.ct-notfound__body[b-ltbe903xut] {
    font-family: var(--ct-font-body);
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--ct-off-white);
    opacity: 0.88;
    max-width: 540px;
    margin: 0 auto 2rem;
}

.ct-notfound__actions[b-ltbe903xut] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary CTA on dark background: gold-accented to stand out */
.ct-btn--primary-light[b-ltbe903xut] {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: var(--ct-radius-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: var(--ct-gold);
    color: var(--ct-near-black);
    border: 2px solid var(--ct-gold);
    font-family: var(--ct-font-body);
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ct-btn--primary-light:hover[b-ltbe903xut],
.ct-btn--primary-light:focus-visible[b-ltbe903xut] {
    background: var(--ct-gold-dark);
    border-color: var(--ct-gold-dark);
    color: var(--ct-near-black);
    text-decoration: none;
}

/* Ghost CTA on dark background: off-white outline */
.ct-btn--ghost-light[b-ltbe903xut] {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: var(--ct-radius-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    color: var(--ct-off-white);
    border: 2px solid rgba(250, 247, 242, 0.5);
    font-family: var(--ct-font-body);
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ct-btn--ghost-light:hover[b-ltbe903xut],
.ct-btn--ghost-light:focus-visible[b-ltbe903xut] {
    border-color: var(--ct-off-white);
    background: rgba(250, 247, 242, 0.08);
    color: var(--ct-off-white);
    text-decoration: none;
}
/* /Pages/Plans/ClaimsInboxPage.razor.rz.scp.css */
/* Plan 16-05 Task 3 — ClaimsInboxPage scoped CSS. Flat list of pending
   claims across all officer-plans. Royal Blue accents, oldest-first
   sort order is a load-bearing UX convention but lives in the C# code. */

.ct-claims-inbox-shell[b-p3c1gt48q0] {
    max-width: 980px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

.ct-claims-inbox-intro h1[b-p3c1gt48q0] {
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-display);
    margin: 0 0 var(--ct-space-2) 0;
}
.ct-claims-inbox-intro .ct-text-muted[b-p3c1gt48q0] {
    color: var(--ct-grey-dark);
    margin: 0 0 var(--ct-space-4) 0;
}

.ct-claims-inbox-list[b-p3c1gt48q0] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--ct-space-3);
}

.ct-claims-inbox-row[b-p3c1gt48q0] {
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-left: 4px solid var(--ct-gold);
    border-radius: var(--ct-radius);
    padding: var(--ct-space-4);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--ct-space-4);
    align-items: center;
}
.ct-claims-inbox-row:hover[b-p3c1gt48q0] {
    border-color: var(--ct-royal-blue);
}

.ct-claims-inbox-row__title[b-p3c1gt48q0] {
    font-family: var(--ct-font-display);
    font-size: var(--ct-font-size-lg);
    font-weight: 700;
    color: var(--ct-royal-blue);
    margin: 0 0 var(--ct-space-1) 0;
}
.ct-claims-inbox-row__meta[b-p3c1gt48q0] {
    color: var(--ct-grey-dark);
    font-size: var(--ct-font-size-sm);
    margin: 0 0 var(--ct-space-1) 0;
}
.ct-claims-inbox-row__claimant[b-p3c1gt48q0] {
    color: var(--ct-near-black);
    font-size: var(--ct-font-size-sm);
    margin: 0;
}

.ct-claims-inbox-row__actions[b-p3c1gt48q0] {
    display: flex;
    align-items: center;
}

.ct-empty-state[b-p3c1gt48q0] {
    text-align: center;
    padding: var(--ct-space-6);
    color: var(--ct-grey-dark);
    background: var(--ct-off-white);
    border: 1px dashed var(--ct-grey-light);
    border-radius: var(--ct-radius);
}

@media (max-width: 600px) {
    .ct-claims-inbox-row[b-p3c1gt48q0] { grid-template-columns: 1fr; }
}
/* /Pages/Plans/ClaimsReviewPage.razor.rz.scp.css */
/* Plan 16-05 — ClaimsReviewPage scoped CSS. Mirrors mockup
   16-mockups/06-claims-review.html. Royal-Blue per-part headers,
   maroon decline modal, NO red anywhere — destructive accents are
   Maroon (#7D2248) or ghost. */

.ct-claims-review-shell[b-iokgb4aaya] {
    max-width: 980px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

.ct-claims-review-intro h1[b-iokgb4aaya] {
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-display);
    margin: 0 0 var(--ct-space-2) 0;
}
.ct-claims-review-intro .ct-text-muted[b-iokgb4aaya] {
    color: var(--ct-grey-dark);
    margin: 0 0 var(--ct-space-4) 0;
}

.part-section[b-iokgb4aaya] {
    margin-bottom: var(--ct-space-5);
}
.part-section__header[b-iokgb4aaya] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ct-space-3);
    padding: var(--ct-space-3) var(--ct-space-4);
    background: var(--ct-blue-dark);
    color: var(--ct-off-white);
    border-radius: var(--ct-radius) var(--ct-radius) 0 0;
}
.part-section__header h3[b-iokgb4aaya] {
    color: var(--ct-off-white);
    margin: 0;
    font-family: var(--ct-font-display);
}
.part-section__header .ct-text-muted[b-iokgb4aaya] {
    color: rgba(250, 247, 242, 0.7);
    margin: 0;
}
.part-section__body[b-iokgb4aaya] {
    border: 1px solid var(--ct-grey-light);
    border-top: none;
    border-radius: 0 0 var(--ct-radius) var(--ct-radius);
    padding: var(--ct-space-4);
    background: var(--ct-off-white);
}

.ct-claim-card[b-iokgb4aaya] {
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-radius: var(--ct-radius-sm);
    padding: var(--ct-space-4);
    margin-bottom: var(--ct-space-3);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--ct-space-4);
    align-items: center;
}
.ct-claim-card:last-child[b-iokgb4aaya] { margin-bottom: 0; }
.ct-claim-card:hover[b-iokgb4aaya] { border-color: var(--ct-royal-blue); }
.ct-claim-card__name[b-iokgb4aaya] {
    font-family: var(--ct-font-display);
    font-size: var(--ct-font-size-lg);
    color: var(--ct-near-black);
}
.claim-meta[b-iokgb4aaya] {
    font-size: var(--ct-font-size-sm);
    color: var(--ct-grey-dark);
    margin-top: var(--ct-space-1);
}
.claim-actions[b-iokgb4aaya] {
    display: flex;
    gap: var(--ct-space-2);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.confirmed-banner[b-iokgb4aaya] {
    background: rgba(46, 125, 91, 0.10);
    border-left: 4px solid var(--ct-success);
    padding: var(--ct-space-3) var(--ct-space-4);
    border-radius: var(--ct-radius-sm);
}

.auto-released[b-iokgb4aaya] {
    background: var(--ct-grey-light);
    border-left: 3px solid var(--ct-grey-mid);
    padding: var(--ct-space-2) var(--ct-space-3);
    border-radius: var(--ct-radius-sm);
    font-size: var(--ct-font-size-sm);
    color: var(--ct-grey-dark);
    margin-bottom: var(--ct-space-2);
}
.auto-released del[b-iokgb4aaya] { text-decoration: line-through; color: var(--ct-grey-dark); }

.ct-empty-state[b-iokgb4aaya] {
    text-align: center;
    padding: var(--ct-space-6);
    color: var(--ct-grey-dark);
    background: var(--ct-off-white);
    border: 1px dashed var(--ct-grey-light);
    border-radius: var(--ct-radius);
}

/* ===== Modals ===== */
.ct-modal-backdrop[b-iokgb4aaya] {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    z-index: 1000;
}
.ct-modal[b-iokgb4aaya] {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ct-off-white);
    border-radius: var(--ct-radius);
    padding: var(--ct-space-5);
    max-width: 480px;
    width: calc(100% - var(--ct-space-5) * 2);
    z-index: 1001;
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.25);
}
.ct-modal h2[b-iokgb4aaya] {
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-display);
    margin: 0 0 var(--ct-space-3) 0;
}
.ct-modal--decline[b-iokgb4aaya] {
    border: 2px solid var(--ct-maroon);
}
.ct-modal--decline h2[b-iokgb4aaya] {
    color: var(--ct-maroon);
}
.ct-modal__actions[b-iokgb4aaya] {
    display: flex;
    justify-content: flex-end;
    gap: var(--ct-space-2);
    margin-top: var(--ct-space-4);
}

/* ===== Banners ===== */
.ct-banner[b-iokgb4aaya] {
    padding: var(--ct-space-3) var(--ct-space-4);
    border-radius: var(--ct-radius-sm);
    margin-bottom: var(--ct-space-3);
}
.ct-banner--warning[b-iokgb4aaya] {
    background: rgba(255, 187, 28, 0.12);
    border-left: 4px solid var(--ct-gold);
    color: var(--ct-near-black);
}
.ct-banner--error[b-iokgb4aaya] {
    background: rgba(125, 34, 72, 0.08);
    border-left: 4px solid var(--ct-maroon);
    color: var(--ct-near-black);
}

/* ===== Buttons (NO red — destructive uses Maroon) ===== */
.ct-btn--danger[b-iokgb4aaya] {
    background: var(--ct-maroon);
    color: var(--ct-off-white);
    border: 1px solid var(--ct-maroon);
}
.ct-btn--danger:hover[b-iokgb4aaya] {
    background: #5e1a37; /* darker maroon shade */
}
/* /Pages/Plans/PlanCreatePage.razor.rz.scp.css */
/* Plan 16-02 — /plans/new page styles. CSS-isolation, brand-token-only.
   No #FFFFFF, no #000000, no purple. Mirrors mockup 03-plan-create.html.
   Plan 20-01 F08 — wizard step strip styles appended. */

.ct-create-shell[b-7oh1z2etmt] {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

.ct-create-shell h1[b-7oh1z2etmt] {
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-display);
    margin: 0 0 var(--ct-space-2) 0;
}

.ct-create-shell .ct-text-muted[b-7oh1z2etmt] {
    color: var(--ct-grey-dark);
}

.ct-create-form[b-7oh1z2etmt] {
    display: flex;
    flex-direction: column;
    gap: var(--ct-space-4);
    margin-top: var(--ct-space-4);
}

.ct-create-section[b-7oh1z2etmt] {
    margin-top: 0;
}

.ct-create-section-title[b-7oh1z2etmt] {
    font-family: var(--ct-font-display);
    color: var(--ct-near-black);
    margin: 0 0 var(--ct-space-3) 0;
}

.ct-create-section-row[b-7oh1z2etmt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--ct-space-3);
    margin-bottom: var(--ct-space-2);
}

.ct-create-field[b-7oh1z2etmt] {
    margin-bottom: var(--ct-space-4);
}

.ct-create-label[b-7oh1z2etmt] {
    display: block;
    font-weight: 600;
    color: var(--ct-near-black);
    margin-bottom: var(--ct-space-2);
}

.ct-create-required[b-7oh1z2etmt] {
    color: var(--ct-danger);
}

.ct-create-hint[b-7oh1z2etmt] {
    display: block;
    font-size: var(--ct-font-size-sm);
    color: var(--ct-grey-dark);
    margin-top: var(--ct-space-1);
}

.ct-create-validation[b-7oh1z2etmt] {
    display: block;
    color: var(--ct-danger);
    font-size: var(--ct-font-size-sm);
    margin-top: var(--ct-space-1);
}

.ct-create-readonly-lodge[b-7oh1z2etmt] {
    padding: var(--ct-space-3) var(--ct-space-4);
    background: var(--ct-grey-light);
    border-radius: var(--ct-radius-sm);
    color: var(--ct-near-black);
    margin: 0;
    font-weight: 600;
}

.ct-create-grid-2[b-7oh1z2etmt] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ct-space-4);
}

@media (max-width: 600px) {
    .ct-create-grid-2[b-7oh1z2etmt] {
        grid-template-columns: 1fr;
    }
}

.ct-create-actions[b-7oh1z2etmt] {
    display: flex;
    gap: var(--ct-space-3);
    justify-content: flex-end;
    margin-top: var(--ct-space-4);
}

.ct-create-banner[b-7oh1z2etmt] {
    padding: var(--ct-space-3) var(--ct-space-4);
    border-radius: var(--ct-radius-sm);
    margin: var(--ct-space-3) 0;
}

.ct-create-banner--error[b-7oh1z2etmt] {
    background: rgba(181, 61, 61, 0.08);
    border-left: 4px solid var(--ct-danger);
    color: var(--ct-near-black);
}

.ct-create-banner__link[b-7oh1z2etmt] {
    display: inline-block;
    margin-left: var(--ct-space-2);
    color: var(--ct-maroon);
    text-decoration: underline;
}

/* ----- ceremony radio cards ----- */
.ct-ceremony-radio[b-7oh1z2etmt] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ct-space-3);
}

@media (max-width: 600px) {
    .ct-ceremony-radio[b-7oh1z2etmt] {
        grid-template-columns: 1fr;
    }
}

.ct-ceremony-radio__btn[b-7oh1z2etmt] {
    display: flex;
    flex-direction: column;
    gap: var(--ct-space-1);
    padding: var(--ct-space-4);
    border: 2px solid var(--ct-grey-light);
    border-radius: var(--ct-radius);
    background: var(--ct-off-white);
    cursor: pointer;
    text-align: center;
    transition: border-color 120ms ease, background 120ms ease;
}

.ct-ceremony-radio__btn:hover[b-7oh1z2etmt] {
    border-color: var(--ct-royal-blue);
}

.ct-ceremony-radio__btn--selected[b-7oh1z2etmt] {
    border-color: var(--ct-royal-blue);
    background: rgba(52, 53, 121, 0.06);
}

.ct-ceremony-radio__title[b-7oh1z2etmt] {
    font-family: var(--ct-font-display);
    font-weight: 700;
    font-size: var(--ct-font-size-xl);
    color: var(--ct-near-black);
}

.ct-ceremony-radio__sub[b-7oh1z2etmt] {
    font-size: var(--ct-font-size-sm);
    color: var(--ct-grey-dark);
}

/* ----- practices repeater ----- */
.ct-practice-row[b-7oh1z2etmt] {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: var(--ct-space-3);
    align-items: end;
    padding: var(--ct-space-3);
    border: 1px solid var(--ct-grey-light);
    border-radius: var(--ct-radius-sm);
    margin-bottom: var(--ct-space-2);
}

.ct-practice-row .ct-create-field[b-7oh1z2etmt] {
    margin-bottom: 0;
}

.ct-practice-remove[b-7oh1z2etmt] {
    align-self: end;
}

/* Plan 20-01 F08 — wizard step strip */
.ct-create-back[b-7oh1z2etmt] { margin-bottom: var(--ct-space-3); }

.ct-wizard-steps[b-7oh1z2etmt] {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: var(--ct-space-4);
    overflow-x: auto;
    scrollbar-width: none;
}
.ct-wizard-steps[b-7oh1z2etmt]::-webkit-scrollbar { display: none; }

.ct-wizard-step[b-7oh1z2etmt] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 72px;
    flex-shrink: 0;
}

.ct-wizard-step__num[b-7oh1z2etmt] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ct-font-display);
    font-weight: 700;
    font-size: 1rem;
    background: var(--ct-grey-light);
    color: var(--ct-grey-dark);
    transition: background 0.2s, color 0.2s;
}

.ct-wizard-step__label[b-7oh1z2etmt] {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: var(--ct-grey-dark);
    white-space: nowrap;
}

.ct-wizard-step--active .ct-wizard-step__num[b-7oh1z2etmt] {
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
}
.ct-wizard-step--active .ct-wizard-step__label[b-7oh1z2etmt] {
    color: var(--ct-royal-blue);
}

.ct-wizard-step__connector[b-7oh1z2etmt] {
    flex: 1;
    height: 2px;
    background: var(--ct-grey-light);
    margin-bottom: 20px;
    min-width: 16px;
}
/* /Pages/Plans/PlanDetailPage.razor.rz.scp.css */
/* Plan 16-03 — PlanDetailPage scoped styles. .ct-roster-table per
   16-mockups/04-plan-detail-roster.html. Brand-token-only — no purples,
   no pure white/black. */

.ct-plan-detail[b-nqq0y2922m] {
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

/* Plan summary header (Royal Blue brand panel) */
.ct-panel--brand.ct-plan-summary[b-nqq0y2922m] {
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
    border-radius: var(--ct-radius);
    padding: var(--ct-space-5);
    margin-bottom: var(--ct-space-4);
}

.ct-plan-summary__title[b-nqq0y2922m] {
    color: var(--ct-off-white);
    font-family: var(--ct-font-display);
    margin: 0 0 var(--ct-space-3) 0;
}

.ct-plan-summary__meta[b-nqq0y2922m] {
    display: flex;
    gap: var(--ct-space-5);
    flex-wrap: wrap;
    font-size: var(--ct-font-size-sm);
    color: var(--ct-off-white);
}

.ct-plan-summary__meta > div[b-nqq0y2922m] {
    display: flex;
    flex-direction: column;
}

.ct-plan-summary__label[b-nqq0y2922m] {
    color: var(--ct-gold);
    font-size: var(--ct-font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 2px;
}

.ct-plan-summary__actions[b-nqq0y2922m] {
    margin-top: var(--ct-space-4);
    display: flex;
    gap: var(--ct-space-3);
    flex-wrap: wrap;
}

.ct-plan-summary__lifecycle[b-nqq0y2922m] {
    color: var(--ct-off-white) !important;
}

/* Tab strip (15-08 pattern) */
.ct-tabs[b-nqq0y2922m] {
    display: flex;
    gap: var(--ct-space-2);
    flex-wrap: wrap;
    border-bottom: 1px solid var(--ct-grey-light);
    margin-bottom: var(--ct-space-4);
}
.ct-tab[b-nqq0y2922m] {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: var(--ct-space-2) var(--ct-space-4);
    font-family: var(--ct-font-body);
    font-weight: 600;
    color: var(--ct-grey-dark);
    cursor: pointer;
}
.ct-tab:hover[b-nqq0y2922m] { color: var(--ct-royal-blue); }
.ct-tab--active[b-nqq0y2922m] {
    color: var(--ct-royal-blue);
    border-bottom-color: var(--ct-gold);
}

/* Roster table */
.ct-roster-table[b-nqq0y2922m] {
    width: 100%;
    border-collapse: collapse;
    background: var(--ct-off-white);
}

.ct-roster-table th[b-nqq0y2922m], .ct-roster-table td[b-nqq0y2922m] {
    padding: var(--ct-space-3) var(--ct-space-4);
    text-align: left;
    border-bottom: 1px solid var(--ct-grey-light);
    vertical-align: middle;
}

.ct-roster-table thead th[b-nqq0y2922m] {
    background: var(--ct-grey-light);
    color: var(--ct-near-black);
    font-weight: 700;
    border-bottom: 2px solid var(--ct-grey-mid);
    font-size: var(--ct-font-size-sm);
}

.ct-roster-table tbody tr:hover[b-nqq0y2922m] {
    background: rgba(52, 53, 121, 0.04);
}

.ct-part-name[b-nqq0y2922m] {
    font-family: var(--ct-font-display);
    font-weight: 600;
    color: var(--ct-near-black);
}

.ct-assignee[b-nqq0y2922m] {
    display: inline-flex;
    align-items: center;
    gap: var(--ct-space-2);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--ct-radius-sm);
    padding: var(--ct-space-1) var(--ct-space-2);
    cursor: pointer;
    color: var(--ct-near-black);
}
.ct-assignee:hover[b-nqq0y2922m] {
    border-color: var(--ct-royal-blue);
    background: rgba(52, 53, 121, 0.04);
}

.ct-assignee__avatar[b-nqq0y2922m] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--ct-font-size-xs);
}

.ct-assignee__name[b-nqq0y2922m] {
    font-weight: 600;
    color: var(--ct-near-black);
}

.ct-practice-chips[b-nqq0y2922m] {
    display: inline-flex;
    gap: 4px;
    flex-wrap: wrap;
}
.ct-practice-chip[b-nqq0y2922m] {
    padding: var(--ct-space-1) var(--ct-space-2);
    border-radius: var(--ct-radius-sm);
    border: none;
    font-size: var(--ct-font-size-xs);
    font-weight: 700;
    cursor: pointer;
}
.ct-practice-chip--attending[b-nqq0y2922m] {
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
}
.ct-practice-chip--optout[b-nqq0y2922m] {
    background: var(--ct-grey-light);
    color: var(--ct-grey-dark);
    text-decoration: line-through;
}

/* Open-to-network switch */
.ct-switch[b-nqq0y2922m] {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
}
.ct-switch input[b-nqq0y2922m] {
    opacity: 0;
    width: 0;
    height: 0;
}
.ct-switch__slider[b-nqq0y2922m] {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--ct-grey-mid);
    border-radius: 22px;
    transition: background 200ms ease;
}
.ct-switch__slider[b-nqq0y2922m]::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: var(--ct-off-white);
    border-radius: 50%;
    transition: transform 200ms ease;
}
.ct-switch input:checked + .ct-switch__slider[b-nqq0y2922m] {
    background: var(--ct-royal-blue);
}
.ct-switch input:checked + .ct-switch__slider[b-nqq0y2922m]::before {
    transform: translateX(16px);
}

.ct-plan-roster__header[b-nqq0y2922m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ct-space-3);
    gap: var(--ct-space-3);
    flex-wrap: wrap;
}

.ct-plan-roster__count[b-nqq0y2922m] {
    font-size: var(--ct-font-size-base);
    font-weight: 400;
    color: var(--ct-grey-dark);
}

/* Overview tab */
.ct-plan-overview[b-nqq0y2922m] {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--ct-space-2) var(--ct-space-4);
    margin: 0;
}
.ct-plan-overview dt[b-nqq0y2922m] {
    font-weight: 600;
    color: var(--ct-grey-dark);
    text-transform: uppercase;
    font-size: var(--ct-font-size-xs);
    letter-spacing: 0.04em;
}
.ct-plan-overview dd[b-nqq0y2922m] {
    margin: 0;
    color: var(--ct-near-black);
}
.ct-plan-overview__support[b-nqq0y2922m] {
    font-family: monospace;
    font-size: var(--ct-font-size-xs);
    color: var(--ct-grey-dark);
}

/* Practices tab */
.ct-plan-practices[b-nqq0y2922m] {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ct-plan-practices li[b-nqq0y2922m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ct-space-3) 0;
    border-bottom: 1px solid var(--ct-grey-light);
}

/* Dirty-guard modal (mirrors profile pattern) */
.ct-modal-backdrop[b-nqq0y2922m] {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    z-index: 1000;
}
.ct-modal[b-nqq0y2922m] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ct-off-white);
    border-radius: var(--ct-radius);
    padding: var(--ct-space-5);
    max-width: 480px;
    width: calc(100% - var(--ct-space-5) * 2);
    z-index: 1001;
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.25);
}
.ct-modal h2[b-nqq0y2922m] {
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-display);
    margin: 0 0 var(--ct-space-3) 0;
}
.ct-modal__actions[b-nqq0y2922m] {
    display: flex;
    justify-content: flex-end;
    gap: var(--ct-space-2);
    margin-top: var(--ct-space-4);
}

.ct-banner[b-nqq0y2922m] {
    padding: var(--ct-space-2) var(--ct-space-3);
    border-radius: var(--ct-radius-sm);
    margin-bottom: var(--ct-space-3);
}
.ct-banner--error[b-nqq0y2922m] {
    background: rgba(125, 34, 72, 0.1);
    border-left: 4px solid var(--ct-maroon);
    color: var(--ct-maroon);
}

/* F27 27-06 (closes TD 16-07 F16-A): roster mobile card-stack +
   touch-target polish. Honors the 70-year-old iPhone design target
   from CLAUDE.md — >=48px touch targets, padding rhythm, discrete-row
   visual separation. Brand-token-only (no purples, no pure white/black). */
@media (max-width: 768px) {
    /* Collapse roster table to a card stack — each <tr> becomes a card,
       each <td> a labeled row. Hide the thead since labels move inline. */
    .ct-roster-table[b-nqq0y2922m],
    .ct-roster-table tbody[b-nqq0y2922m],
    .ct-roster-table tr[b-nqq0y2922m],
    .ct-roster-table td[b-nqq0y2922m] {
        display: block;
        width: 100%;
    }

    .ct-roster-table thead[b-nqq0y2922m] {
        /* Visually hide column headers but keep them in the a11y tree
           via the per-cell data-label fallback (degrades gracefully if
           data-label is not authored — column meaning is still inferable
           from the inline button copy). */
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .ct-roster-table tbody tr[b-nqq0y2922m] {
        background: var(--ct-off-white);
        border: 1px solid var(--ct-grey-light);
        border-radius: var(--ct-radius);
        padding: var(--ct-space-3);
        margin-bottom: var(--ct-space-3);
        display: flex;
        flex-direction: column;
        gap: var(--ct-space-2);
    }

    .ct-roster-table tbody tr:hover[b-nqq0y2922m] {
        /* Disable desktop hover-tint on mobile — card border is the
           affordance, hover-tint at touch width is noise. */
        background: var(--ct-off-white);
    }

    .ct-roster-table td[b-nqq0y2922m] {
        padding: var(--ct-space-2) 0;
        border-bottom: 1px solid var(--ct-grey-light);
        min-height: 48px;
    }

    .ct-roster-table tr td:last-child[b-nqq0y2922m] {
        border-bottom: none;
    }

    /* Touch-target floor — WCAG 2.5.5 + CLAUDE.md UI simplicity rule. */
    .ct-roster-table .ct-assignee[b-nqq0y2922m],
    .ct-roster-table .ct-btn[b-nqq0y2922m],
    .ct-roster-table .ct-practice-chip[b-nqq0y2922m] {
        min-height: 48px;
        min-width: 48px;
        padding-left: var(--ct-space-3);
        padding-right: var(--ct-space-3);
    }

    /* Switch grows from 38x22 desktop to a 48-tall hit zone on mobile —
       the visible slider stays compact; the hit zone is the wrapper. */
    .ct-roster-table .ct-switch[b-nqq0y2922m] {
        display: inline-flex;
        align-items: center;
        min-height: 48px;
        min-width: 48px;
    }

    /* Practice chips wrap into 2 cols on narrow viewports instead of an
       awkward horizontal-overflow row. */
    .ct-roster-table .ct-practice-chips[b-nqq0y2922m] {
        gap: var(--ct-space-2);
    }
}
/* /Pages/Plans/PlanLifecycleCancelPage.razor.rz.scp.css */
/* Plan 16-06 — scoped chrome for /plans/{id}/cancel. Maroon for destructive. */

[b-qsednryxyo] .ct-lifecycle-shell {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

[b-qsednryxyo] .ct-lifecycle-card--destructive {
    background: rgba(125, 34, 72, 0.04);
    border: 2px solid var(--ct-maroon);
}
[b-qsednryxyo] .ct-lifecycle-card--destructive h3 { color: var(--ct-maroon); }

[b-qsednryxyo] .ct-lifecycle-banner--maroon {
    border-left: 4px solid var(--ct-maroon);
    background: rgba(125, 34, 72, 0.06);
}

[b-qsednryxyo] .ct-checkbox-confirm {
    display: flex;
    align-items: flex-start;
    gap: var(--ct-space-3);
    padding: var(--ct-space-3);
    background: var(--ct-off-white);
    border: 1px solid var(--ct-maroon);
    border-radius: var(--ct-radius-sm);
    margin: var(--ct-space-4) 0;
}
[b-qsednryxyo] .ct-checkbox-confirm input {
    accent-color: var(--ct-maroon);
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

[b-qsednryxyo] .ct-text-maroon { color: var(--ct-maroon); }

[b-qsednryxyo] .ct-btn--danger {
    background: var(--ct-maroon);
    color: var(--ct-off-white);
    border: 1px solid var(--ct-maroon);
}
[b-qsednryxyo] .ct-btn--danger:hover { background: #5e1a37; }
[b-qsednryxyo] .ct-btn--danger:disabled {
    background: var(--ct-grey-mid);
    border-color: var(--ct-grey-mid);
    cursor: not-allowed;
}
/* /Pages/Plans/PlanLifecycleReconfirmPage.razor.rz.scp.css */
/* Plan 16-06 — scoped chrome for /plans/{id}/reconfirm. Royal Blue (constructive). */

[b-hxux0khccn] .ct-lifecycle-shell {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

[b-hxux0khccn] .ct-lifecycle-card--restore {
    background: rgba(52, 53, 121, 0.04);
    border: 2px solid var(--ct-royal-blue);
}
/* /Pages/Plans/PlanLifecycleReschedulePage.razor.rz.scp.css */
/* Plan 16-06 — scoped chrome for /plans/{id}/reschedule. Maroon for destructive. */

[b-cogokzsi0v] .ct-lifecycle-shell {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

[b-cogokzsi0v] .ct-btn--danger {
    background: var(--ct-maroon);
    color: var(--ct-off-white);
    border: 1px solid var(--ct-maroon);
}
[b-cogokzsi0v] .ct-btn--danger:hover { background: #5e1a37; }
[b-cogokzsi0v] .ct-btn--danger:disabled {
    background: var(--ct-grey-mid);
    border-color: var(--ct-grey-mid);
    cursor: not-allowed;
}
/* /Pages/Plans/PlanListPage.razor.rz.scp.css */
/* Plan 16-01 — /plans page styles. CSS-isolation. Brand-token-only.
   No #FFFFFF, no #000000, no purple. */

.ct-plans-shell[b-tr65ab20y8] {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--ct-space-5);
}

.ct-plans-intro[b-tr65ab20y8] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--ct-space-4);
    flex-wrap: wrap;
    margin-bottom: var(--ct-space-5);
}
.ct-plans-intro h1[b-tr65ab20y8] {
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-display);
    margin: 0;
}
.ct-plans-intro .ct-text-muted[b-tr65ab20y8] {
    color: var(--ct-grey-dark);
    margin: 0;
}

.ct-filter-row[b-tr65ab20y8] {
    display: flex;
    flex-direction: column;
    gap: var(--ct-space-2);
    margin-bottom: var(--ct-space-4);
}
.ct-filter-axis[b-tr65ab20y8] {
    display: flex;
    gap: var(--ct-space-2);
    flex-wrap: wrap;
    align-items: center;
}
.ct-filter-axis__label[b-tr65ab20y8] {
    font-size: var(--ct-font-size-xs);
    font-weight: 600;
    color: var(--ct-grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: var(--ct-space-2);
}
.ct-filter-chip[b-tr65ab20y8] {
    padding: var(--ct-space-1) var(--ct-space-3);
    border-radius: var(--ct-radius-pill);
    background: var(--ct-grey-light);
    border: 1px solid transparent;
    font-size: var(--ct-font-size-xs);
    font-weight: 600;
    cursor: pointer;
    color: var(--ct-near-black);
}
.ct-filter-chip--active[b-tr65ab20y8] {
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
    border-color: var(--ct-blue-dark);
}
.ct-filter-clear[b-tr65ab20y8] {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: var(--ct-maroon);
    font-size: var(--ct-font-size-sm);
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.ct-plans-loading[b-tr65ab20y8] {
    display: flex;
    flex-direction: column;
    gap: var(--ct-space-3);
    margin-top: var(--ct-space-5);
}
.ct-skeleton-card[b-tr65ab20y8] {
    height: 96px;
    background: var(--ct-grey-light);
    border-radius: var(--ct-radius);
    opacity: 0.6;
    animation: ct-pulse-b-tr65ab20y8 1.6s ease-in-out infinite;
}

.ct-plans-error[b-tr65ab20y8] {
    text-align: center;
    padding: var(--ct-space-6) var(--ct-space-4);
    background: var(--ct-off-white);
    border: 1px solid var(--ct-grey-light);
    border-left: 4px solid var(--ct-danger);
    border-radius: var(--ct-radius);
    margin-top: var(--ct-space-5);
}

.ct-plans-empty[b-tr65ab20y8] {
    text-align: center;
    padding: var(--ct-space-8) var(--ct-space-4);
    background: var(--ct-off-white);
    border: 1px dashed var(--ct-grey-light);
    border-radius: var(--ct-radius);
    margin-top: var(--ct-space-5);
}
.ct-plans-empty p[b-tr65ab20y8] {
    color: var(--ct-near-black);
    margin: 0 0 var(--ct-space-3) 0;
}

.ct-chip[b-tr65ab20y8] {
    display: inline-block;
    padding: var(--ct-space-1) var(--ct-space-3);
    border-radius: var(--ct-radius-pill);
    background: var(--ct-grey-light);
    color: var(--ct-near-black);
    font-size: var(--ct-font-size-xs);
    font-weight: 600;
}

@keyframes ct-pulse-b-tr65ab20y8 {
    0%, 100% { opacity: 0.45; }
    50%      { opacity: 0.8; }
}
/* /Pages/Plans/SmartEntryModal.razor.rz.scp.css */
/* Plan 16-03 — SmartEntryModal scoped styles. Mirrors Profile dirty-guard
   modal sizing + CableTow brand tokens. */

.ct-modal-backdrop[b-fg9hqva0y5] {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    z-index: 1000;
}

.ct-smart-modal[b-fg9hqva0y5] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ct-off-white);
    border-radius: var(--ct-radius);
    padding: var(--ct-space-5);
    max-width: 520px;
    width: calc(100% - var(--ct-space-5) * 2);
    z-index: 1001;
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.25);
}

.ct-smart-modal h2[b-fg9hqva0y5] {
    color: var(--ct-royal-blue);
    font-family: var(--ct-font-display);
    margin: 0 0 var(--ct-space-3) 0;
}

.ct-smart-modal__tabs[b-fg9hqva0y5] {
    display: flex;
    gap: var(--ct-space-2);
    border-bottom: 2px solid var(--ct-grey-light);
    margin-bottom: var(--ct-space-4);
}
.ct-smart-modal__tab[b-fg9hqva0y5] {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: var(--ct-space-2) var(--ct-space-4);
    font-weight: 600;
    color: var(--ct-grey-dark);
    cursor: pointer;
    margin-bottom: -2px;
}
.ct-smart-modal__tab:hover[b-fg9hqva0y5] { color: var(--ct-royal-blue); }
.ct-smart-modal__tab--active[b-fg9hqva0y5] {
    color: var(--ct-royal-blue);
    border-bottom-color: var(--ct-gold);
}

.ct-smart-modal__field[b-fg9hqva0y5] { margin-bottom: var(--ct-space-3); }
.ct-smart-modal__label[b-fg9hqva0y5] {
    display: block;
    font-weight: 600;
    color: var(--ct-near-black);
    margin-bottom: var(--ct-space-1);
}
.ct-smart-modal__input[b-fg9hqva0y5] {
    width: 100%;
    padding: var(--ct-space-2) var(--ct-space-3);
    border: 1px solid var(--ct-grey-mid);
    border-radius: var(--ct-radius-sm);
    background: var(--ct-off-white);
    color: var(--ct-near-black);
    font-family: var(--ct-font-body);
    font-size: var(--ct-font-size-base);
}
.ct-smart-modal__input:focus[b-fg9hqva0y5] {
    outline: 2px solid var(--ct-gold);
    border-color: var(--ct-royal-blue);
}
.ct-smart-modal__hint[b-fg9hqva0y5] {
    font-size: var(--ct-font-size-xs);
    color: var(--ct-grey-dark);
    margin-top: var(--ct-space-1);
}

.ct-smart-modal__error[b-fg9hqva0y5] {
    background: rgba(125, 34, 72, 0.1);
    border-left: 4px solid var(--ct-maroon);
    padding: var(--ct-space-2) var(--ct-space-3);
    border-radius: var(--ct-radius-sm);
    color: var(--ct-maroon);
    margin-bottom: var(--ct-space-3);
    font-size: var(--ct-font-size-sm);
}

.ct-smart-modal__results[b-fg9hqva0y5] {
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: var(--ct-space-3);
}

.ct-smart-modal__result[b-fg9hqva0y5] {
    display: flex;
    width: 100%;
    align-items: center;
    gap: var(--ct-space-3);
    padding: var(--ct-space-2) var(--ct-space-3);
    border: 1px solid var(--ct-grey-light);
    border-radius: var(--ct-radius-sm);
    background: var(--ct-off-white);
    cursor: pointer;
    margin-bottom: var(--ct-space-2);
    text-align: left;
}
.ct-smart-modal__result:hover[b-fg9hqva0y5] {
    border-color: var(--ct-royal-blue);
    background: rgba(52, 53, 121, 0.04);
}

.ct-smart-modal__avatar[b-fg9hqva0y5] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ct-royal-blue);
    color: var(--ct-off-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--ct-font-size-xs);
    flex-shrink: 0;
}

.ct-smart-modal__result-text[b-fg9hqva0y5] {
    display: flex;
    flex-direction: column;
}
.ct-smart-modal__result-name[b-fg9hqva0y5] {
    font-weight: 600;
    color: var(--ct-near-black);
}
.ct-smart-modal__result-lodge[b-fg9hqva0y5] {
    font-size: var(--ct-font-size-xs);
    color: var(--ct-grey-dark);
}

.ct-smart-modal__actions[b-fg9hqva0y5] {
    display: flex;
    justify-content: flex-end;
    gap: var(--ct-space-2);
    margin-top: var(--ct-space-4);
}

.visually-hidden[b-fg9hqva0y5] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
