/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout scoped styles - MudBlazor handles most layout */

#blazor-error-ui[b-ra5zugdur5] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ra5zugdur5] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Accounts.razor.rz.scp.css */
/* ── Context bar ─────────────────────────────────────────────────── */
.context-bar[b-yxkmn1emum] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}
/* /Components/Pages/AttributionSettingsDrawer.razor.rz.scp.css */
/* ── Overlay ─────────────────────────────────────────────────────── */
.settings-overlay[b-6psp8rdvva] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.settings-overlay.open[b-6psp8rdvva] {
    opacity: 1;
    pointer-events: auto;
}

/* ── Drawer panel ────────────────────────────────────────────────── */
.settings-drawer[b-6psp8rdvva] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    width: 420px;
    max-width: 92vw;
    background: var(--ds-settings-drawer-bg);
    border-left: 1px solid var(--ds-settings-drawer-border);
    box-shadow: var(--ds-settings-drawer-shadow);
    color: var(--ds-settings-drawer-text);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.settings-drawer.open[b-6psp8rdvva] {
    transform: translateX(0);
}

/* ── Header (fixed top) ─────────────────────────────────────────── */
.drawer-header[b-6psp8rdvva] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ds-settings-drawer-border);
    flex-shrink: 0;
}

/* ── Body (scrollable middle) ────────────────────────────────────── */
.drawer-body[b-6psp8rdvva] {
    flex: 1 1 0%;
    overflow-y: auto;
    min-height: 0;
    padding: 16px 20px;
}

/* ── Footer (fixed bottom) ───────────────────────────────────────── */
.drawer-footer[b-6psp8rdvva] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-top: 1px solid var(--ds-settings-drawer-border);
    flex-shrink: 0;
}

/* ── Section overline color ──────────────────────────────────────── */
.settings-drawer .mud-typography-overline[b-6psp8rdvva] {
    color: var(--ds-settings-drawer-section-clr) !important;
}

/* ── Scrollbar tint ──────────────────────────────────────────────── */
.drawer-body[b-6psp8rdvva]::-webkit-scrollbar-thumb {
    background: var(--ds-border);
}

.drawer-body[b-6psp8rdvva]::-webkit-scrollbar-thumb:hover {
    background: #b0bec5;
}
/* /Components/Pages/CompositeReturns.razor.rz.scp.css */
/* ── Ghost Date Button ──────────────────────────────────────────── */
.ghost-date-wrapper[b-se7f38if0b] {
    flex: none;
    max-width: 190px;
    border-radius: 8px;
    padding: 2px 6px;
    transition: background 0.15s ease;
}

.ghost-date-wrapper:hover[b-se7f38if0b] {
    background: rgba(0, 0, 0, 0.04);
}

/* Remove MudDatePicker underline for ghost look */
[b-se7f38if0b] .ghost-date-wrapper .mud-input-underline::before,
[b-se7f38if0b] .ghost-date-wrapper .mud-input-underline::after {
    border: none !important;
}

[b-se7f38if0b] .ghost-date-wrapper .mud-input {
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

[b-se7f38if0b] .ghost-date-wrapper .mud-input-label {
    display: none;
}
/* /Components/Pages/CompositeRules.razor.rz.scp.css */
/* Constrain MudSwitch click area to the switch and its label only */
.switch-inline[b-p70wf6cw5h] {
    width: fit-content;
}
/* /Components/Pages/ContributionSettingsDrawer.razor.rz.scp.css */
/* ── Overlay ─────────────────────────────────────────────────────── */
.settings-overlay[b-cy23j36w7n] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.settings-overlay.open[b-cy23j36w7n] {
    opacity: 1;
    pointer-events: auto;
}

/* ── Drawer panel ────────────────────────────────────────────────── */
.settings-drawer[b-cy23j36w7n] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    width: 420px;
    max-width: 92vw;
    background: var(--ds-settings-drawer-bg);
    border-left: 1px solid var(--ds-settings-drawer-border);
    box-shadow: var(--ds-settings-drawer-shadow);
    color: var(--ds-settings-drawer-text);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.settings-drawer.open[b-cy23j36w7n] {
    transform: translateX(0);
}

/* ── Header (fixed top) ─────────────────────────────────────────── */
.drawer-header[b-cy23j36w7n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ds-settings-drawer-border);
    flex-shrink: 0;
}

/* ── Body (scrollable middle) ────────────────────────────────────── */
.drawer-body[b-cy23j36w7n] {
    flex: 1 1 0%;
    overflow-y: auto;
    min-height: 0;
    padding: 16px 20px;
}

/* ── Footer (fixed bottom) ───────────────────────────────────────── */
.drawer-footer[b-cy23j36w7n] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-top: 1px solid var(--ds-settings-drawer-border);
    flex-shrink: 0;
}

/* ── Section overline color ──────────────────────────────────────── */
.settings-drawer .mud-typography-overline[b-cy23j36w7n] {
    color: var(--ds-settings-drawer-section-clr) !important;
}

/* ── Scrollbar tint ──────────────────────────────────────────────── */
.drawer-body[b-cy23j36w7n]::-webkit-scrollbar-thumb {
    background: var(--ds-border);
}

.drawer-body[b-cy23j36w7n]::-webkit-scrollbar-thumb:hover {
    background: #b0bec5;
}
/* /Components/Pages/Holdings.razor.rz.scp.css */
/* ── Context bar ─────────────────────────────────────────────────── */
.context-bar[b-e7wp1z1kl8] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

/* ── Ghost Date Button ──────────────────────────────────────────── */
.ghost-date-wrapper[b-e7wp1z1kl8] {
    flex: none;
    max-width: 190px;
    border-radius: 8px;
    padding: 2px 6px;
    transition: background 0.15s ease;
}

.ghost-date-wrapper:hover[b-e7wp1z1kl8] {
    background: rgba(0, 0, 0, 0.04);
}

/* Remove MudDatePicker underline for ghost look */
[b-e7wp1z1kl8] .ghost-date-wrapper .mud-input-underline::before,
[b-e7wp1z1kl8] .ghost-date-wrapper .mud-input-underline::after {
    border: none !important;
}

[b-e7wp1z1kl8] .ghost-date-wrapper .mud-input {
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

[b-e7wp1z1kl8] .ghost-date-wrapper .mud-input-label {
    display: none;
}

/* ── Segmented Control (allocation toggle) ──────────────────────── */
.segment-control[b-e7wp1z1kl8] {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.segment-item[b-e7wp1z1kl8] {
    border: none;
    background: transparent;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}

.segment-item:hover[b-e7wp1z1kl8] {
    color: var(--mud-palette-text-primary);
}

.segment-item.active[b-e7wp1z1kl8] {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    color: var(--mud-palette-text-primary);
    font-weight: 600;
}
/* /Components/Pages/Login.razor.rz.scp.css */
/* ── Page wrapper ─────────────────────────────────────────────
   Variables live here (NOT :root) — Blazor scoped CSS turns
   :root into :root[b-xxxx] which is an invalid selector.
   Keeping them on .ef-login-page makes all children inherit them.
   Critical layout backgrounds use hardcoded hex to prevent any
   MudBlazor theme override from bleeding through.
───────────────────────────────────────────────────────────────── */
.ef-login-page[b-m6txmxynvp] {
    --teal:        #08636b;
    --teal-light:  #0a7a85;
    --teal-pale:   #e0f0f1;
    --text-main:   #0f172a;
    --text-muted:  #64748b;
    --border:      #d8e0e7;

    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    z-index: 9999;
}

/* ══════════════════════════════════════════════════════════════
   LEFT PANEL — hardcoded background so MudBlazor palette can't override
══════════════════════════════════════════════════════════════ */
.left-panel[b-m6txmxynvp] {
    flex: 0 0 52%;
    background: linear-gradient(160deg, #0a1628 0%, #040a12 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Decorative glow blobs */
.left-panel[b-m6txmxynvp]::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,99,107,0.22) 0%, transparent 70%);
    pointer-events: none;
}

.left-panel[b-m6txmxynvp]::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,99,107,0.14) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Left nav ──────────────────────────────────────────────── */
.left-nav[b-m6txmxynvp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    position: relative;
    z-index: 1;
}

.left-nav-brand[b-m6txmxynvp] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.left-nav-brand img[b-m6txmxynvp] {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.left-nav-brand-text[b-m6txmxynvp] {
    display: flex;
    flex-direction: column;
}

.left-nav-brand-name[b-m6txmxynvp] {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.left-nav-brand-sub[b-m6txmxynvp] {
    font-size: 12px;
    font-weight: 600;
    color: #FF8000;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    margin-top: 2px;
}

.left-nav-links[b-m6txmxynvp] {
    display: flex;
    align-items: center;
    gap: 28px;
}

.left-nav-link[b-m6txmxynvp] {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.left-nav-link:hover[b-m6txmxynvp] {
    color: #ffffff;
}

.left-nav-cta[b-m6txmxynvp] {
    background: rgba(8,99,107,0.3);
    border: 1.5px solid rgba(10,122,133,0.8);
    color: #5ecfdb;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    transition: background 0.2s, border-color 0.2s;
}

.left-nav-cta:hover[b-m6txmxynvp] {
    background: rgba(8,99,107,0.5);
    border-color: #5ecfdb;
}

.left-nav-divider[b-m6txmxynvp] {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0 40px;
    position: relative;
    z-index: 1;
}

/* ── Left content ──────────────────────────────────────────── */
.left-content[b-m6txmxynvp] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 56px;
    position: relative;
    z-index: 1;
}

/* eyebrow: orange dash + uppercase label */
.left-eyebrow[b-m6txmxynvp] {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #FF8000;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 22px 0;
}

.left-eyebrow[b-m6txmxynvp]::before {
    content: '';
    display: inline-block;
    width: 29px;
    height: 3px;
    background: #FF8000;
    flex-shrink: 0;
}

.left-headline[b-m6txmxynvp] {
    font-size: clamp(32px, 3.4vw, 50px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 18px 0;
    border: none;
    outline: none;
}

.left-headline span[b-m6txmxynvp] {
    color: #FF8000;
}

.left-subheadline[b-m6txmxynvp] {
    font-size: 19px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0 0 24px 0;
    max-width: 580px;
}

.left-body-para[b-m6txmxynvp] {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    padding-left: 18px;
    border-left: 3px solid #FF8000;
    margin: 0 0 36px 0;
    max-width: 580px;
}

.left-body-para strong[b-m6txmxynvp] {
    color: #FF8000;
    font-weight: 700;
}

/* ── Feature pills ─────────────────────────────────────────── */
.left-pills[b-m6txmxynvp] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.left-pill[b-m6txmxynvp] {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}

.left-pill[b-m6txmxynvp]::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0a7a85;
    flex-shrink: 0;
}

/* ── Left footer ───────────────────────────────────────────── */
.left-footer[b-m6txmxynvp] {
    padding: 20px 40px;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   RIGHT PANEL — hardcoded #f8fafc so MudBlazor palette can't override
══════════════════════════════════════════════════════════════ */
.right-panel[b-m6txmxynvp] {
    flex: 1;
    background: #f8fafc;
    border-left: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 64px;
    overflow-y: auto;
    position: relative;
}

/* Horse watermark — subtle teal decorative element, centered behind login box */
.right-panel[b-m6txmxynvp]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background-image: url('/images/EFS_Logo_Strokes_Only.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

/* ── Login box ─────────────────────────────────────────────── */
.login-box[b-m6txmxynvp] {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.login-box-header[b-m6txmxynvp] {
    margin-bottom: 36px;
}

.login-eyebrow[b-m6txmxynvp] {
    font-size: 11px;
    font-weight: 700;
    color: #08636b;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 10px 0;
}

.login-title[b-m6txmxynvp] {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.login-title span[b-m6txmxynvp] {
    color: #08636b;
}

.login-subtitle[b-m6txmxynvp] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ── Form groups ───────────────────────────────────────────── */
.ef-form-group[b-m6txmxynvp] {
    margin-bottom: 20px;
    position: relative;
}

.ef-form-label[b-m6txmxynvp] {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.ef-form-input[b-m6txmxynvp] {
    width: 100%;
    padding: 13px 16px 13px 42px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0f172a;
    border: 1px solid #d8e0e7;
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.ef-form-input[b-m6txmxynvp]::placeholder {
    color: #a0aec0;
}

.ef-form-input:focus[b-m6txmxynvp] {
    border-color: #08636b;
    box-shadow: 0 0 0 3px rgba(8,99,107,0.12);
    background: #ffffff;
}

.ef-input-icon[b-m6txmxynvp] {
    position: absolute;
    left: 14px;
    top: 38px;
    color: #94a3b8;
    pointer-events: none;
}

/* ── Utils row ─────────────────────────────────────────────── */
.ef-form-utils[b-m6txmxynvp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    margin-top: 4px;
}

.ef-checkbox-label[b-m6txmxynvp] {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #0f172a;
    font-weight: 500;
    cursor: pointer;
    gap: 8px;
    user-select: none;
}

.ef-checkbox-label input[type="checkbox"][b-m6txmxynvp] {
    accent-color: #08636b;
    cursor: pointer;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.ef-forgot-link[b-m6txmxynvp] {
    font-size: 13px;
    color: #08636b;
    text-decoration: none;
    font-weight: 600;
}

.ef-forgot-link:hover[b-m6txmxynvp] {
    text-decoration: underline;
}

/* ── Error message ─────────────────────────────────────────── */
.ef-error-msg[b-m6txmxynvp] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}

/* ── Primary button ────────────────────────────────────────── */
.ef-btn-primary[b-m6txmxynvp] {
    width: 100%;
    background: #08636b;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ef-btn-primary:hover:not(:disabled)[b-m6txmxynvp] {
    background: #05484e;
}

.ef-btn-primary:disabled[b-m6txmxynvp] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Divider ───────────────────────────────────────────────── */
.ef-divider[b-m6txmxynvp] {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.ef-divider[b-m6txmxynvp]::before,
.ef-divider[b-m6txmxynvp]::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #d8e0e7;
}

.ef-divider[b-m6txmxynvp]::before { margin-right: 14px; }
.ef-divider[b-m6txmxynvp]::after  { margin-left:  14px; }

/* ── Secondary button ──────────────────────────────────────── */
.ef-btn-secondary[b-m6txmxynvp] {
    width: 100%;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #d8e0e7;
    padding: 14px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ef-btn-secondary:hover[b-m6txmxynvp] {
    background: #f4f6f8;
    border-color: #c4cdd5;
}

/* ── Trust footer ──────────────────────────────────────────── */
.login-trust-footer[b-m6txmxynvp] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — stack at 900px
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .ef-login-page[b-m6txmxynvp] {
        flex-direction: column;
        overflow-y: auto;
        position: fixed;
        inset: 0;
    }

    .left-panel[b-m6txmxynvp] {
        flex: none;
        min-height: 260px;
    }

    .left-nav-links[b-m6txmxynvp] {
        display: none;
    }

    .left-content[b-m6txmxynvp] {
        padding: 28px 28px;
    }

    .right-panel[b-m6txmxynvp] {
        flex: none;
        padding: 40px 28px;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .right-panel[b-m6txmxynvp]::before {
        display: none;
    }
}
/* /Components/Pages/RecoverAccess.razor.rz.scp.css */
/* Inherits ef-login-page / ef-login-card / ef-brand-* / ef-form-* / ef-btn-primary
   from Login.razor.css via the shared class names.
   Only rules unique to the recovery page are defined here. */

.ef-login-page[b-t44pxftat7] {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a1628;
    background-image: radial-gradient(circle at top right, #11233d, transparent 40%);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ef-login-card[b-t44pxftat7] {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.ef-brand-header[b-t44pxftat7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.ef-brand-header img[b-t44pxftat7] {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.ef-brand-text[b-t44pxftat7] {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #0f172a;
    margin-top: -8px;
}

.ef-brand-subtext[b-t44pxftat7] {
    color: #08636b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    margin-top: 4px;
}

.ef-form-group[b-t44pxftat7] {
    margin-bottom: 24px;
    position: relative;
}

.ef-form-label[b-t44pxftat7] {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.ef-form-input[b-t44pxftat7] {
    width: 100%;
    padding: 12px 16px 12px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #0f172a;
    border: 1px solid #d8e0e7;
    border-radius: 4px;
    background: #fafcff;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.ef-form-input:focus[b-t44pxftat7] {
    border-color: #08636b;
    box-shadow: 0 0 0 3px #e0f0f1;
    background: #ffffff;
}

.ef-input-icon[b-t44pxftat7] {
    position: absolute;
    left: 14px;
    top: 36px;
    color: #64748b;
    pointer-events: none;
}

.ef-btn-primary[b-t44pxftat7] {
    width: 100%;
    background: #08636b;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ef-btn-primary:hover:not(:disabled)[b-t44pxftat7] {
    background: #05484e;
}

.ef-btn-primary:disabled[b-t44pxftat7] {
    opacity: 0.5;
    cursor: not-allowed;
}

.ef-footer[b-t44pxftat7] {
    position: absolute;
    bottom: 24px;
    color: #475569;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ── Recovery-specific ── */

.ef-recover-title[b-t44pxftat7] {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.ef-recover-body[b-t44pxftat7] {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ef-recover-admin-note[b-t44pxftat7] {
    margin-top: 20px;
    padding: 12px 14px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 4px;
    font-size: 12px;
    color: #0369a1;
    line-height: 1.6;
}

.ef-recover-admin-note code[b-t44pxftat7] {
    background: #e0f2fe;
    padding: 1px 5px;
    border-radius: 3px;
    font-family: 'IBM Plex Mono', monospace;
}

.ef-recover-success[b-t44pxftat7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px 0;
}

.ef-recover-success p[b-t44pxftat7] {
    font-size: 13px;
    color: #0f172a;
    line-height: 1.6;
    margin: 0;
}

.ef-recover-platformadmin[b-t44pxftat7] {
    font-size: 12px;
    color: #64748b;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 4px;
    border: 1px solid #d8e0e7;
}

.ef-recover-platformadmin code[b-t44pxftat7] {
    background: #e2e8f0;
    padding: 1px 5px;
    border-radius: 3px;
    font-family: 'IBM Plex Mono', monospace;
}

.ef-back-link[b-t44pxftat7] {
    display: block;
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #08636b;
    text-decoration: none;
}

.ef-back-link:hover[b-t44pxftat7] {
    text-decoration: underline;
}
/* /Components/Pages/Transactions.razor.rz.scp.css */
/* ── Context bar ─────────────────────────────────────────────────── */
.context-bar[b-nqsuuowc16] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

/* ── Ghost Date Button ──────────────────────────────────────────── */
.ghost-date-wrapper[b-nqsuuowc16] {
    flex: none;
    max-width: 190px;
    border-radius: 8px;
    padding: 2px 6px;
    transition: background 0.15s ease;
}

.ghost-date-wrapper:hover[b-nqsuuowc16] {
    background: rgba(0, 0, 0, 0.04);
}

/* Remove MudDatePicker underline for ghost look */
[b-nqsuuowc16] .ghost-date-wrapper .mud-input-underline::before,
[b-nqsuuowc16] .ghost-date-wrapper .mud-input-underline::after {
    border: none !important;
}

[b-nqsuuowc16] .ghost-date-wrapper .mud-input {
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
}

[b-nqsuuowc16] .ghost-date-wrapper .mud-input-label {
    display: none;
}

/* ── Date range separator ───────────────────────────────────────── */
.date-sep[b-nqsuuowc16] {
    color: var(--mud-palette-text-secondary);
    font-size: 0.85rem;
    flex: none;
}
/* /Components/Shared/GlobalFilterDrawer.razor.rz.scp.css */
/* ── Overlay ─────────────────────────────────────────────────────── */
.filter-overlay[b-aehrszs6sa] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.filter-overlay.open[b-aehrszs6sa] {
    opacity: 1;
    pointer-events: auto;
}

/* ── Drawer panel ────────────────────────────────────────────────── */
.filter-drawer[b-aehrszs6sa] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1250;
    width: 380px;
    max-width: 92vw;
    background: var(--ds-settings-drawer-bg);
    border-left: 1px solid var(--ds-settings-drawer-border);
    box-shadow: var(--ds-settings-drawer-shadow);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-drawer.open[b-aehrszs6sa] {
    transform: translateX(0);
}

/* ── Header ──────────────────────────────────────────────────────── */
.drawer-header[b-aehrszs6sa] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--ds-settings-drawer-border);
    flex-shrink: 0;
}

/* ── Macro filters (top, fixed) ──────────────────────────────────── */
.macro-filters[b-aehrszs6sa] {
    flex-shrink: 0;
    padding: 12px 20px 4px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

/* ── Accounts panel (middle, flex-grow, scrollable) ──────────────── */
.accounts-panel[b-aehrszs6sa] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.accounts-search[b-aehrszs6sa] {
    flex-shrink: 0;
    padding: 12px 20px 8px;
}

.accounts-list[b-aehrszs6sa] {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 8px;
}

/* ── Table wrapper (rounded corners + contained overflow) ────────── */
.accounts-table-wrapper[b-aehrszs6sa] {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

/* ── Formal data-grid table ──────────────────────────────────────── */
.accounts-table[b-aehrszs6sa] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.accounts-table thead[b-aehrszs6sa] {
    position: sticky;
    top: 0;
    z-index: 1;
}

.accounts-table th[b-aehrszs6sa] {
    background: #f5f5f5;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mud-palette-text-secondary);
    padding: 8px 12px;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
}

.accounts-table td[b-aehrszs6sa] {
    padding: 7px 12px;
    border-bottom: 1px solid #eee;
}

/* Zebra striping */
.accounts-table tbody tr:nth-child(odd)[b-aehrszs6sa] {
    background: #fff;
}

.accounts-table tbody tr:nth-child(even)[b-aehrszs6sa] {
    background: #f8fafc;
}

/* Hover */
.accounts-table tbody tr[b-aehrszs6sa] {
    cursor: pointer;
    transition: background 0.12s ease;
    user-select: none;
}

.accounts-table tbody tr:hover[b-aehrszs6sa] {
    background: #edf2f7;
}

/* Selected — overrides zebra & hover */
.accounts-table tbody tr.selected[b-aehrszs6sa],
.accounts-table tbody tr.selected:hover[b-aehrszs6sa] {
    background: #eff6ff;
    color: var(--mud-palette-primary);
    font-weight: 500;
}

/* Cell typography */
.acct-num[b-aehrszs6sa] {
    font-family: 'Roboto Mono', 'Consolas', monospace;
    font-size: 0.8rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
    width: 110px;
}

.acct-name[b-aehrszs6sa] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 0;
}

/* ── Security section (bottom, fixed) ────────────────────────────── */
.security-section[b-aehrszs6sa] {
    flex-shrink: 0;
    padding: 8px 20px;
    border-top: 1px solid var(--mud-palette-lines-default);
}

/* ── Sections (shared) ───────────────────────────────────────────── */
.drawer-section[b-aehrszs6sa] {
    margin-bottom: 8px;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.drawer-footer[b-aehrszs6sa] {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-top: 1px solid var(--mud-palette-lines-default);
    flex-shrink: 0;
}
