/* /Components/Layout/LanguageSelector.razor.rz.scp.css */
.lang-dropdown[b-gvhtuus9g9] {
    position: relative;
}

.lang-trigger[b-gvhtuus9g9] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    list-style: none;
    user-select: none;
}

.lang-trigger[b-gvhtuus9g9]::-webkit-details-marker {
    display: none;
}

.lang-trigger:hover[b-gvhtuus9g9] {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.lang-trigger .bi-globe2[b-gvhtuus9g9] {
    font-size: 1rem;
}

.lang-chevron[b-gvhtuus9g9] {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.lang-dropdown[open] .lang-chevron[b-gvhtuus9g9] {
    transform: rotate(180deg);
}

.lang-menu[b-gvhtuus9g9] {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    padding: 6px;
    margin: 0;
    list-style: none;
    background: var(--card-bg, #1a1d2e);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    z-index: 100;
    animation: lang-fade-in-b-gvhtuus9g9 0.15s ease;
}

@keyframes lang-fade-in-b-gvhtuus9g9 {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-menu-item[b-gvhtuus9g9] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s ease;
}

.lang-menu-item:hover[b-gvhtuus9g9] {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    text-decoration: none;
}

.lang-menu-item.active[b-gvhtuus9g9] {
    background: var(--accent-color);
    color: #fff;
}

.lang-flag[b-gvhtuus9g9] {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}
/* /Components/Layout/LoginLayout.razor.rz.scp.css */
.login-shell[b-m1s267vypr] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.login-header[b-m1s267vypr] {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 2rem;
}

.login-shell[b-m1s267vypr]  .login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-shell[b-m1s267vypr]  .login-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    color: #212529;
}

.login-shell[b-m1s267vypr]  .login-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-shell[b-m1s267vypr]  .login-brand h2 {
    margin: .5rem 0 0;
    font-weight: 700;
    color: #212529;
}

.login-shell[b-m1s267vypr]  .login-brand p {
    margin-bottom: 0;
}

.login-shell[b-m1s267vypr]  .btn-ms {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .5rem 1rem;
    border: 1px solid #d0d0d0;
    border-radius: .375rem;
    background: #fff;
    color: #3c4043;
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    transition: background .15s, box-shadow .15s;
}

.login-shell[b-m1s267vypr]  .btn-ms:hover {
    background: #f7f7f7;
    box-shadow: 0 1px 3px rgba(0,0,0,.12);
}

.login-shell[b-m1s267vypr]  .login-card hr {
    border-color: #dee2e6;
}

.login-shell[b-m1s267vypr]  .login-card .form-label {
    color: #495057;
}

.login-shell[b-m1s267vypr]  .login-card .form-control {
    background-color: #fff !important;
    color: #212529 !important;
    border: 1px solid #ced4da !important;
}

.login-shell[b-m1s267vypr]  .login-card .form-control::placeholder {
    color: #6c757d !important;
}

.login-shell[b-m1s267vypr]  .login-card .form-control:focus {
    background-color: #fff !important;
    color: #212529 !important;
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25) !important;
}

.login-shell[b-m1s267vypr]  .login-card h5 {
    color: #212529;
}

.login-shell[b-m1s267vypr]  .login-card a {
    color: #0d6efd;
}

.login-shell[b-m1s267vypr]  .login-card a:hover {
    color: #0a58ca;
}

.login-shell[b-m1s267vypr]  .login-card .alert-danger {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.login-shell[b-m1s267vypr]  .login-card .alert-success {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
}

.login-shell[b-m1s267vypr]  .login-card .text-muted {
    color: #6c757d !important;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.shell[b-88z5uh3azf] {
    display: flex;
    min-height: 100vh;
    background: var(--bg-gradient);
    color: var(--text-primary);
}

.nav-toggle[b-88z5uh3azf] {
    display: none;
}

.sidebar[b-88z5uh3azf] {
    width: 280px;
    background: var(--sidebar-gradient);
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    height: 100vh;
    box-shadow: var(--shadow-strong);
    z-index: 12;
}

.sidebar-inner[b-88z5uh3azf] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.brand[b-88z5uh3azf] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img[b-88z5uh3azf] {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.brand-text[b-88z5uh3azf] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--text-primary);
}

.brand-title[b-88z5uh3azf] {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.sidebar-user[b-88z5uh3azf] {
    margin-top: auto;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-user .user-meta[b-88z5uh3azf] {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-primary);
}

.sidebar-user .user-meta .user-text[b-88z5uh3azf] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-user .user-name[b-88z5uh3azf],
.sidebar-user .user-email[b-88z5uh3azf] {
    display: block;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
}

.sidebar-user .user-email[b-88z5uh3azf] {
    color: var(--muted-color);
    font-size: 0.85rem;
}

.sidebar-user .user-meta .bi[b-88z5uh3azf] {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.user-name[b-88z5uh3azf] {
    font-weight: 600;
    line-height: 1.2;
}



.shell-main[b-88z5uh3azf] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.shell-header[b-88z5uh3azf] {
    z-index: 10;
    padding: 22px 28px 12px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    background: var(--header-gradient);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-strong);
}

.nav-toggle-btn[b-88z5uh3azf] {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-toggle-btn:hover[b-88z5uh3azf] {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.header-meta[b-88z5uh3azf] {
    flex: 1;
    min-width: 220px;
}

.eyebrow[b-88z5uh3azf] {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--muted-color);
    margin-bottom: 6px;
}

.shell-header h1[b-88z5uh3azf] {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

.subtitle[b-88z5uh3azf] {
    margin: 6px 0 0;
    color: var(--muted-color);
}

.header-actions[b-88z5uh3azf] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.language-selector[b-88z5uh3azf] {
    display: inline-flex;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.04);
}

.lang-option[b-88z5uh3azf] {
    padding: 4px 10px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    color: var(--muted-color);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-option:hover[b-88z5uh3azf],
.lang-option.active[b-88z5uh3azf] {
    color: var(--text-primary);
    background: var(--accent-color);
    box-shadow: var(--shadow-soft);
}

.lang-option .flag-wrapper[b-88z5uh3azf] {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
}

.lang-option img[b-88z5uh3azf] {
    width: 24px;
    height: auto;
    display: block;
}

.lang-option .lang-label[b-88z5uh3azf] {
    font-size: 0.85rem;
}

.chip[b-88z5uh3azf] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
}

.chip:hover[b-88z5uh3azf] {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: var(--shadow-soft);
}

.shell-content[b-88z5uh3azf] {
    flex: 1;
    padding: 22px 28px 32px;
    background: var(--content-gradient);
}

.content-surface[b-88z5uh3azf] {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    min-height: calc(100vh - 140px);
}

.nav-overlay[b-88z5uh3azf] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 11;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav-toggle:checked ~ .shell .sidebar[b-88z5uh3azf] {
    transform: translateX(0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.nav-toggle:checked ~ .nav-overlay[b-88z5uh3azf] {
    display: block;
    opacity: 1;
}

@media (max-width: 1100px) {
    .sidebar[b-88z5uh3azf] {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
    }

    .shell[b-88z5uh3azf] {
        flex-direction: column;
    }

    .nav-toggle-btn[b-88z5uh3azf] {
        display: inline-flex;
    }

    .shell-header[b-88z5uh3azf] {
        padding-top: 16px;
    }

    .header-actions[b-88z5uh3azf] {
        justify-content: flex-start;
    }

    .content-surface[b-88z5uh3azf] {
        min-height: auto;
    }

    .nav-overlay[b-88z5uh3azf] {
        display: block;
    }
}

#blazor-error-ui[b-88z5uh3azf] {
    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-88z5uh3azf] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.menu[b-7ldy5faqdt] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-section[b-7ldy5faqdt] {
    margin-top: 16px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 0.72rem;
    color: var(--muted-color);
    padding-left: 6px;
}

.menu-link[b-7ldy5faqdt] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    min-height: 54px;
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s ease;
    position: relative;
}

.menu-link span:last-child[b-7ldy5faqdt] {
    line-height: 1.35;
}

.menu-link:hover[b-7ldy5faqdt] {
    border-color: var(--border-color);
    box-shadow: var(--shadow-soft);
    transform: translateY(-1px);
}

.menu-link.active[b-7ldy5faqdt] {
    border-color: rgba(88, 196, 255, 0.5);
    background: linear-gradient(135deg, rgba(88, 196, 255, 0.12), rgba(124, 93, 255, 0.12));
    box-shadow: 0 12px 30px rgba(88, 196, 255, 0.15);
}

.menu-icon[b-7ldy5faqdt] {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    font-size: 1.1rem;
}

.pill[b-7ldy5faqdt] {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(88, 196, 255, 0.15);
    color: var(--accent-color);
    font-size: 0.75rem;
    border: 1px solid rgba(88, 196, 255, 0.3);
}
/* /Components/Pages/BankStatementImport.razor.rz.scp.css */
/* ── Page header ── */
.page-header[b-flth4rnzaw] {
    margin-bottom: 2rem;
}

.page-header h1[b-flth4rnzaw] {
    margin-bottom: 0.25rem;
}

.page-subtitle[b-flth4rnzaw] {
    color: var(--muted-color);
    font-size: 0.95rem;
    margin: 0;
    max-width: 560px;
}

/* ── Upload card ── */
.upload-card[b-flth4rnzaw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    max-width: 480px;
}

.upload-card-icon[b-flth4rnzaw] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(88, 196, 255, 0.12));
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: #34d399;
}

.upload-hint[b-flth4rnzaw] {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin: 0;
}

.upload-status[b-flth4rnzaw] {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
}

/* ── File name chip ── */
.file-chip[b-flth4rnzaw] {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--muted-color);
}

/* ── Drag-and-drop zone ── */
.upload-zone[b-flth4rnzaw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem 1rem;
    border: 2px dashed rgba(88, 196, 255, 0.25);
    border-radius: 12px;
    background: rgba(88, 196, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-zone:hover[b-flth4rnzaw] {
    border-color: rgba(88, 196, 255, 0.5);
    background: rgba(88, 196, 255, 0.08);
}

.upload-zone-icon[b-flth4rnzaw] {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.upload-zone-text[b-flth4rnzaw] {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted-color);
}

/* Hide the native file input, the <label> acts as the clickable area */
.upload-zone[b-flth4rnzaw]  input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ── Format badges ── */
.format-badges[b-flth4rnzaw] {
    display: flex;
    gap: 0.5rem;
}

.format-badge[b-flth4rnzaw] {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(124, 93, 255, 0.1);
    border: 1px solid rgba(124, 93, 255, 0.25);
    border-radius: 6px;
    color: #c4b5fd;
}

/* ── Spinner animation ── */
.spin[b-flth4rnzaw] {
    animation: spin-icon-b-flth4rnzaw 1s linear infinite;
}

@keyframes spin-icon-b-flth4rnzaw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Progress bar ── */
.progress-track[b-flth4rnzaw] {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.progress-bar-animated[b-flth4rnzaw] {
    height: 100%;
    width: 40%;
    border-radius: 2px;
    background: linear-gradient(90deg, #34d399, var(--accent-color));
    animation: progress-slide-b-flth4rnzaw 1.2s ease-in-out infinite;
}

@keyframes progress-slide-b-flth4rnzaw {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ── Success banner ── */
.result-banner[b-flth4rnzaw] {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #34d399;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ── Result grid ── */
.result-grid[b-flth4rnzaw] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    max-width: 720px;
}

@media (max-width: 768px) {
    .result-grid[b-flth4rnzaw] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .result-grid[b-flth4rnzaw] {
        grid-template-columns: 1fr;
    }
}

.result-tile[b-flth4rnzaw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.tile-icon[b-flth4rnzaw] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 10px;
}

.result-tile-total .tile-icon[b-flth4rnzaw] {
    background: rgba(88, 196, 255, 0.12);
    border: 1px solid rgba(88, 196, 255, 0.25);
    color: #58c4ff;
}

.result-tile-parsed .tile-icon[b-flth4rnzaw] {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
}

.result-tile-inserted .tile-icon[b-flth4rnzaw] {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #34d399;
}

.result-tile-skipped .tile-icon[b-flth4rnzaw] {
    background: rgba(124, 93, 255, 0.12);
    border: 1px solid rgba(124, 93, 255, 0.25);
    color: #a78bfa;
}

.tile-value[b-flth4rnzaw] {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.tile-label[b-flth4rnzaw] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Error card ── */
.error-card[b-flth4rnzaw] {
    margin-top: 1.5rem;
    max-width: 720px;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: #fca5a5;
    font-weight: 500;
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.dash-hero[b-n8j0e8buxd] {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 22px;
    background: linear-gradient(135deg, rgba(88,196,255,0.08), rgba(124,93,255,0.08));
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
}

.hero-left h2[b-n8j0e8buxd] {
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-sub[b-n8j0e8buxd] {
    color: var(--muted-color);
    max-width: 620px;
}

.hero-actions[b-n8j0e8buxd] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.hero-right[b-n8j0e8buxd] {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.hero-chip[b-n8j0e8buxd] {
    align-self: stretch;
    padding: 14px;
    border-radius: 16px;
    background: rgba(88,196,255,0.12);
    border: 1px solid rgba(88,196,255,0.35);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chip-label[b-n8j0e8buxd] {
    font-size: 0.9rem;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chip-value[b-n8j0e8buxd] {
    font-size: 1.8rem;
    font-weight: 800;
}

.hero-grid[b-n8j0e8buxd] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.mini-card[b-n8j0e8buxd] {
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
}

.mini-label[b-n8j0e8buxd] {
    color: var(--muted-color);
    font-size: 0.85rem;
}

.mini-value[b-n8j0e8buxd] {
    font-size: 1.4rem;
    font-weight: 700;
}

.skeleton-grid[b-n8j0e8buxd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.skeleton-card[b-n8j0e8buxd] {
    height: 160px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 400% 100%;
    animation: shimmer-b-n8j0e8buxd 1.2s infinite;
}

.skeleton-card.wide[b-n8j0e8buxd] {
    grid-column: span 2;
}

@keyframes shimmer-b-n8j0e8buxd {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.dash-grid[b-n8j0e8buxd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}

.dash-card[b-n8j0e8buxd] {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.card-head[b-n8j0e8buxd] {
    font-weight: 700;
    margin-bottom: 10px;
}

.metric-row[b-n8j0e8buxd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.metric h3[b-n8j0e8buxd] {
    margin: 4px 0 0;
    font-weight: 800;
}

.metric p[b-n8j0e8buxd] {
    margin: 0;
    color: var(--muted-color);
}

.hint[b-n8j0e8buxd] {
    margin-top: 10px;
    color: var(--muted-color);
}


.chart-card .bars[b-n8j0e8buxd] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.chart-card .bar[b-n8j0e8buxd] {
    flex: 1 0 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bar-track[b-n8j0e8buxd] {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 4px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.15);
}

.bar-fill[b-n8j0e8buxd] {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(88,196,255,0.55), rgba(124,93,255,0.65));
    min-height: 6px;
}

.bar-value[b-n8j0e8buxd] {
    width: 100%;
    padding: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.bar-label[b-n8j0e8buxd] {
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
    padding: 0 4px 6px;
    color: var(--muted-color);
}

.quick-card .quick-grid[b-n8j0e8buxd] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.quick[b-n8j0e8buxd] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.quick i[b-n8j0e8buxd] {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.quick small[b-n8j0e8buxd] {
    color: var(--muted-color);
}

.quick:hover[b-n8j0e8buxd] {
    border-color: rgba(88,196,255,0.5);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .dash-hero[b-n8j0e8buxd] {
        grid-template-columns: 1fr;
    }

    .hero-grid[b-n8j0e8buxd] {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .skeleton-card.wide[b-n8j0e8buxd] {
        grid-column: span 1;
    }
}
/* /Components/Pages/MemberDetails.razor.rz.scp.css */
.payments-toggle[b-c96a4kaa1u] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.payments-toggle-input[b-c96a4kaa1u] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.payments-toggle-track[b-c96a4kaa1u] {
    position: relative;
    width: 2.5rem;
    height: 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.payments-toggle-track[b-c96a4kaa1u]::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease;
}

.payments-toggle-input:checked + .payments-toggle-track[b-c96a4kaa1u] {
    background: linear-gradient(135deg, #58c4ff, #7c5dff);
    border-color: rgba(255, 255, 255, 0.22);
}

.payments-toggle-input:checked + .payments-toggle-track[b-c96a4kaa1u]::after {
    transform: translateX(1.1rem);
}

.payments-toggle-input:focus-visible + .payments-toggle-track[b-c96a4kaa1u] {
    box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.2), 0 0 0 0.25rem rgba(88, 196, 255, 0.35);
}

.payments-toggle-input:disabled + .payments-toggle-track[b-c96a4kaa1u],
.payments-toggle-input:disabled ~ .payments-toggle-label[b-c96a4kaa1u] {
    opacity: 0.55;
    cursor: not-allowed;
}

.payments-toggle-label[b-c96a4kaa1u] {
    color: var(--text-primary);
}
/* /Components/Pages/Members.razor.rz.scp.css */
.filters[b-5j82bdrpvw]  .mud-input-root,
.filters[b-5j82bdrpvw]  .mud-picker,
.filters[b-5j82bdrpvw]  .mud-picker-inline,
.filters[b-5j82bdrpvw]  .mud-picker-open,
.filters[b-5j82bdrpvw]  .mud-date-picker,
.filters[b-5j82bdrpvw]  .mud-input-slot,
.filters[b-5j82bdrpvw]  .mud-input-adornment,
.filters[b-5j82bdrpvw]  .mud-input-control,
.filters[b-5j82bdrpvw]  .mud-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--text-primary) !important;
    min-height: 30px;
    border-radius: 10px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.filters-header[b-5j82bdrpvw] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.filters-layout[b-5j82bdrpvw] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.filter-panel[b-5j82bdrpvw] {
    grid-column: span 12;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.filter-panel-search[b-5j82bdrpvw],
.filter-panel-created[b-5j82bdrpvw],
.filter-panel-joined[b-5j82bdrpvw] {
    grid-column: span 4;
}

.filter-panel-reminder[b-5j82bdrpvw] {
    grid-column: span 5;
}

.filter-panel-owes[b-5j82bdrpvw] {
    grid-column: span 3;
}

.filter-panel-status[b-5j82bdrpvw] {
    grid-column: span 4;
}

.filter-panel-payment-classification[b-5j82bdrpvw] {
    grid-column: span 12;
}

.filter-panel-actions[b-5j82bdrpvw] {
    grid-column: span 12;
}

.filter-section-head[b-5j82bdrpvw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.filter-section-title[b-5j82bdrpvw] {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.filter-subtitle[b-5j82bdrpvw] {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--muted-color);
}

.filter-selection-count[b-5j82bdrpvw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6rem;
    height: 1.6rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: rgba(88, 196, 255, 0.14);
    color: #8ad8ff;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(88, 196, 255, 0.24);
}

.filter-search-group .input-group-text[b-5j82bdrpvw] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
}

.filter-inline-grid-2[b-5j82bdrpvw],
.filter-inline-grid-3[b-5j82bdrpvw] {
    display: grid;
    gap: 1rem;
    align-items: end;
}

.filter-inline-grid-2[b-5j82bdrpvw] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-inline-grid-3[b-5j82bdrpvw] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-chip-list[b-5j82bdrpvw] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.filter-chip[b-5j82bdrpvw] {
    position: relative;
}

.filter-chip-input[b-5j82bdrpvw] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-chip-label[b-5j82bdrpvw] {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip-label:hover[b-5j82bdrpvw] {
    border-color: rgba(88, 196, 255, 0.35);
    transform: translateY(-1px);
}

.filter-chip-input:checked + .filter-chip-label[b-5j82bdrpvw] {
    background: linear-gradient(135deg, rgba(88, 196, 255, 0.18), rgba(124, 93, 255, 0.2));
    border-color: rgba(88, 196, 255, 0.45);
    box-shadow: 0 8px 20px rgba(88, 196, 255, 0.12);
}

.filter-chip-input:focus-visible + .filter-chip-label[b-5j82bdrpvw] {
    box-shadow: 0 0 0 0.1rem rgba(255,255,255,0.2), 0 0 0 0.25rem rgba(88,196,255,0.3);
}

.filter-select[b-5j82bdrpvw] {
    min-height: 3rem;
}

.filter-help[b-5j82bdrpvw] {
    margin-top: 0.75rem;
}

.filters-actions-grid[b-5j82bdrpvw] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filters-actions-grid .btn[b-5j82bdrpvw] {
    min-width: 13rem;
}

/* Popover position tweak and toolbar removal visuals */
.filters[b-5j82bdrpvw]  .filters-date-popover {
    margin-top: -4px;
    border-radius: 12px;
    overflow: hidden;
}

.filters[b-5j82bdrpvw]  .filters-date-popover .mud-picker-toolbar {
    display: none !important;
}

/* Remove Mud underline style and force full control look */
.filters[b-5j82bdrpvw]  .mud-input-underline:before,
.filters[b-5j82bdrpvw]  .mud-input-underline:after {
    display: none !important;
}

.filters[b-5j82bdrpvw]  .mud-picker,
.filters[b-5j82bdrpvw]  .mud-picker-inline,
.filters[b-5j82bdrpvw]  .mud-picker-open,
.filters[b-5j82bdrpvw]  .mud-date-picker {
    width: 100%;
}

.filters[b-5j82bdrpvw]  .mud-input-root {
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.filters[b-5j82bdrpvw]  .mud-input-input,
.filters[b-5j82bdrpvw]  input.mud-input-control {
    padding: 10px 12px !important;
    height: 100%;
}

.filters[b-5j82bdrpvw]  .mud-input-root:hover,
.filters[b-5j82bdrpvw]  .mud-input-root:focus-within,
.filters[b-5j82bdrpvw]  .mud-picker:hover,
.filters[b-5j82bdrpvw]  .mud-picker:focus-within {
    border-color: rgba(88, 196, 255, 0.5) !important;
    box-shadow: 0 0 0 1px rgba(88, 196, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.filters[b-5j82bdrpvw]  .mud-input-slot,
.filters[b-5j82bdrpvw]  .mud-input-control,
.filters[b-5j82bdrpvw]  .mud-input {
    background: transparent !important;
}

.filters[b-5j82bdrpvw]  .mud-input input,
.filters[b-5j82bdrpvw]  .mud-input textarea,
.filters[b-5j82bdrpvw]  .mud-input-slot input,
.filters[b-5j82bdrpvw]  .mud-input-slot textarea,
.filters[b-5j82bdrpvw]  .mud-input-input {
    color: var(--text-primary);
    caret-color: var(--accent-color);
    background: transparent !important;
}

.filters input[b-5j82bdrpvw]::placeholder,
.filters textarea[b-5j82bdrpvw]::placeholder,
.filters[b-5j82bdrpvw]  input::placeholder,
.filters[b-5j82bdrpvw]  textarea::placeholder,
.filters[b-5j82bdrpvw]  .mud-input-input::placeholder,
.filters[b-5j82bdrpvw]  .mud-input-slot input::placeholder {
    color: rgba(159, 177, 213, 0.78) !important;
    opacity: 1;
}

.filters[b-5j82bdrpvw]  .mud-input-adornment .mud-icon-root,
.filters[b-5j82bdrpvw]  .mud-picker-open-button svg {
    color: #8ad8ff;
    opacity: 0.9;
}

.filters[b-5j82bdrpvw]  .mud-picker-content,
.filters[b-5j82bdrpvw]  .mud-picker-container,
.filters[b-5j82bdrpvw]  .mud-popover-surface {
    background: rgba(10, 16, 32, 0.96);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
}

.filters[b-5j82bdrpvw]  .mud-day,
.filters[b-5j82bdrpvw]  .mud-picker-month,
.filters[b-5j82bdrpvw]  .mud-picker-year {
    color: var(--text-primary);
}

.filters[b-5j82bdrpvw]  .mud-day.mud-selected,
.filters[b-5j82bdrpvw]  .mud-picker-month.mud-selected,
.filters[b-5j82bdrpvw]  .mud-picker-year.mud-selected {
    background: linear-gradient(135deg, rgba(88, 196, 255, 0.35), rgba(124, 93, 255, 0.35));
    color: #0b1021;
}

/* Table row readability on colored states */
:global(.table-striped > tbody > tr:nth-of-type(odd)) > *[b-5j82bdrpvw] {
    background-color: transparent !important;
}

:global(.table-danger)[b-5j82bdrpvw] {
    background-color: #b81c32 !important;
    color: #fdfdfd !important;
    --bs-table-bg: #b81c32;
    --bs-table-striped-bg: #c62942;
    --bs-table-hover-bg: #d1334b;
    --bs-table-color: #fdfdfd;
    --bs-table-striped-color: #fdfdfd;
    --bs-table-hover-color: #fdfdfd;
}

:global(.table-danger) :global(td)[b-5j82bdrpvw],
:global(.table-danger) :global(th)[b-5j82bdrpvw],
:global(.table-danger) :global(span)[b-5j82bdrpvw],
:global(.table-danger) :global(p)[b-5j82bdrpvw],
:global(.table-danger) :global(div)[b-5j82bdrpvw],
:global(.table-danger) :global(a)[b-5j82bdrpvw] {
    color: #fdfdfd !important;
}

:global(.table-warning)[b-5j82bdrpvw] {
    background-color: #b38600 !important;
    color: #fdfdfd !important;
    --bs-table-bg: #b38600;
    --bs-table-striped-bg: #c1920c;
    --bs-table-hover-bg: #cd9c14;
    --bs-table-color: #fdfdfd;
    --bs-table-striped-color: #fdfdfd;
    --bs-table-hover-color: #fdfdfd;
}

:global(.table-warning) :global(td)[b-5j82bdrpvw],
:global(.table-warning) :global(th)[b-5j82bdrpvw],
:global(.table-warning) :global(span)[b-5j82bdrpvw],
:global(.table-warning) :global(p)[b-5j82bdrpvw],
:global(.table-warning) :global(div)[b-5j82bdrpvw],
:global(.table-warning) :global(a)[b-5j82bdrpvw] {
    color: #fdfdfd !important;
}

:global(.table-success)[b-5j82bdrpvw] {
    background-color: rgba(40, 167, 69, 0.3) !important;
    color: #fdfdfd !important;
    --bs-table-bg: rgba(40, 167, 69, 0.3);
    --bs-table-striped-bg: rgba(40, 167, 69, 0.35);
    --bs-table-hover-bg: rgba(40, 167, 69, 0.4);
    --bs-table-color: #fdfdfd;
    --bs-table-striped-color: #fdfdfd;
    --bs-table-hover-color: #fdfdfd;
}

:global(.table-danger) a[b-5j82bdrpvw],
:global(.table-warning) a[b-5j82bdrpvw] {
    color: #fdfdfd !important;
    font-weight: 600;
}

:global(.table-success) a[b-5j82bdrpvw] {
    color: #fdfdfd !important;
    font-weight: 600;
}

:global(.table-danger) td[b-5j82bdrpvw],
:global(.table-warning) td[b-5j82bdrpvw],
:global(.table-success) td[b-5j82bdrpvw] {
    vertical-align: middle;
    font-weight: 600;
}

/* Force cell backgrounds/text in striped tables */
:global(table.table-striped > tbody > tr.table-danger > *)[b-5j82bdrpvw],
:global(table.table-striped > tbody > tr.table-danger > *:hover)[b-5j82bdrpvw] {
    background-color: #b81c32 !important;
    color: #fdfdfd !important;
}

:global(table.table-striped > tbody > tr.table-warning > *)[b-5j82bdrpvw],
:global(table.table-striped > tbody > tr.table-warning > *:hover)[b-5j82bdrpvw] {
    background-color: #b38600 !important;
    color: #fdfdfd !important;
}

:global(table.table-striped) :global(tr.table-success) :global(td)[b-5j82bdrpvw],
:global(table.table-striped) :global(tr.table-success) :global(th)[b-5j82bdrpvw] {
    color: #fdfdfd !important;
}

/* Override Bootstrap striped variable swap so danger/warning keep dark backgrounds */
:global(table.table-striped > tbody > tr.table-danger)[b-5j82bdrpvw] {
    --bs-table-color-type: #fdfdfd;
    --bs-table-bg-type: #b81c32;
}

:global(table.table-striped > tbody > tr.table-warning)[b-5j82bdrpvw] {
    --bs-table-color-type: #fdfdfd;
    --bs-table-bg-type: #b38600;
}

/* Disable Bootstrap striped variable swap for Members table */
:global(table.table-striped > tbody > tr:nth-of-type(2n+1) > *)[b-5j82bdrpvw] {
    --bs-table-color-type: unset !important;
    --bs-table-bg-type: unset !important;
}

@media (max-width: 1399.98px) {
    .filter-panel-search[b-5j82bdrpvw],
    .filter-panel-created[b-5j82bdrpvw],
    .filter-panel-joined[b-5j82bdrpvw],
    .filter-panel-reminder[b-5j82bdrpvw],
    .filter-panel-owes[b-5j82bdrpvw],
    .filter-panel-status[b-5j82bdrpvw] {
        grid-column: span 6;
    }
}

@media (max-width: 991.98px) {
    .filter-panel-search[b-5j82bdrpvw],
    .filter-panel-created[b-5j82bdrpvw],
    .filter-panel-joined[b-5j82bdrpvw],
    .filter-panel-reminder[b-5j82bdrpvw],
    .filter-panel-owes[b-5j82bdrpvw],
    .filter-panel-status[b-5j82bdrpvw],
    .filter-panel-actions[b-5j82bdrpvw] {
        grid-column: span 12;
    }

    .filter-inline-grid-2[b-5j82bdrpvw],
    .filter-inline-grid-3[b-5j82bdrpvw] {
        grid-template-columns: 1fr;
    }

    .filters-actions-grid .btn[b-5j82bdrpvw] {
        width: 100%;
    }
}
/* /Components/Pages/Payments.razor.rz.scp.css */
.filters[b-bm508b7clm]  .mud-input-root,
.filters[b-bm508b7clm]  .mud-picker,
.filters[b-bm508b7clm]  .mud-picker-inline,
.filters[b-bm508b7clm]  .mud-picker-open,
.filters[b-bm508b7clm]  .mud-date-picker,
.filters[b-bm508b7clm]  .mud-input-slot,
.filters[b-bm508b7clm]  .mud-input-adornment,
.filters[b-bm508b7clm]  .mud-input-control,
.filters[b-bm508b7clm]  .mud-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--text-primary) !important;
    min-height: 30px;
    border-radius: 10px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.filters-header[b-bm508b7clm] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.filters-layout[b-bm508b7clm] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.filter-panel[b-bm508b7clm] {
    grid-column: span 12;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.filter-panel-search[b-bm508b7clm] {
    grid-column: span 4;
}

.filter-panel-status[b-bm508b7clm] {
    grid-column: span 5;
}

.filter-panel-meta[b-bm508b7clm] {
    grid-column: span 3;
}

.filter-panel-range[b-bm508b7clm] {
    grid-column: span 6;
}

.filter-panel-contribution[b-bm508b7clm] {
    grid-column: span 4;
}

.filter-panel-actions[b-bm508b7clm] {
    grid-column: span 2;
}

.filter-section-head[b-bm508b7clm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.filter-section-title[b-bm508b7clm] {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.filter-selection-count[b-bm508b7clm] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6rem;
    height: 1.6rem;
    padding: 0 0.45rem;
    border-radius: 999px;
    background: rgba(88, 196, 255, 0.14);
    color: #8ad8ff;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(88, 196, 255, 0.24);
}

.filter-search-group .input-group-text[b-bm508b7clm] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
}

.filter-chip-list[b-bm508b7clm] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.filter-chip-list-wide[b-bm508b7clm] {
    gap: 0.75rem;
}

.filter-chip[b-bm508b7clm] {
    position: relative;
}

.filter-chip-input[b-bm508b7clm] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-chip-label[b-bm508b7clm] {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip-label:hover[b-bm508b7clm] {
    border-color: rgba(88, 196, 255, 0.35);
    transform: translateY(-1px);
}

.filter-chip-input:checked + .filter-chip-label[b-bm508b7clm] {
    background: linear-gradient(135deg, rgba(88, 196, 255, 0.18), rgba(124, 93, 255, 0.2));
    border-color: rgba(88, 196, 255, 0.45);
    box-shadow: 0 8px 20px rgba(88, 196, 255, 0.12);
}

.filter-chip-input:focus-visible + .filter-chip-label[b-bm508b7clm] {
    box-shadow: 0 0 0 0.1rem rgba(255,255,255,0.2), 0 0 0 0.25rem rgba(88,196,255,0.3);
}

.currency-chip[b-bm508b7clm] {
    text-transform: uppercase;
}

.filter-group-stack[b-bm508b7clm] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-group-block + .filter-group-block[b-bm508b7clm] {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-inline-grid[b-bm508b7clm] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-help[b-bm508b7clm] {
    margin-top: 0.75rem;
}

.filters-actions[b-bm508b7clm] {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.85rem;
}

.filters-actions .btn[b-bm508b7clm] {
    width: 100%;
}

/* Popover position tweak and toolbar removal visuals */
.filters[b-bm508b7clm]  .filters-date-popover {
    margin-top: -4px;
    border-radius: 12px;
    overflow: hidden;
}

.filters[b-bm508b7clm]  .filters-date-popover .mud-picker-toolbar {
    display: none !important;
}

/* Remove Mud underline style and force full control look */
.filters[b-bm508b7clm]  .mud-input-underline:before,
.filters[b-bm508b7clm]  .mud-input-underline:after {
    display: none !important;
}

.filters[b-bm508b7clm]  .mud-picker,
.filters[b-bm508b7clm]  .mud-picker-inline,
.filters[b-bm508b7clm]  .mud-picker-open,
.filters[b-bm508b7clm]  .mud-date-picker {
    width: 100%;
}

.filters[b-bm508b7clm]  .mud-input-root {
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.filters[b-bm508b7clm]  .mud-input-input,
.filters[b-bm508b7clm]  input.mud-input-control {
    padding: 10px 12px !important;
    height: 100%;
}

.filters[b-bm508b7clm]  .mud-input-root:hover,
.filters[b-bm508b7clm]  .mud-input-root:focus-within,
.filters[b-bm508b7clm]  .mud-picker:hover,
.filters[b-bm508b7clm]  .mud-picker:focus-within {
    border-color: rgba(88, 196, 255, 0.5) !important;
    box-shadow: 0 0 0 1px rgba(88, 196, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.filters[b-bm508b7clm]  .mud-input-slot,
.filters[b-bm508b7clm]  .mud-input-control,
.filters[b-bm508b7clm]  .mud-input {
    background: transparent !important;
}

.filters[b-bm508b7clm]  .mud-input input,
.filters[b-bm508b7clm]  .mud-input textarea,
.filters[b-bm508b7clm]  .mud-input-slot input,
.filters[b-bm508b7clm]  .mud-input-slot textarea,
.filters[b-bm508b7clm]  .mud-input-input {
    color: var(--text-primary);
    caret-color: var(--accent-color);
    background: transparent !important;
}

.filters input[b-bm508b7clm]::placeholder,
.filters textarea[b-bm508b7clm]::placeholder,
.filters[b-bm508b7clm]  input::placeholder,
.filters[b-bm508b7clm]  textarea::placeholder,
.filters[b-bm508b7clm]  .mud-input-input::placeholder,
.filters[b-bm508b7clm]  .mud-input-slot input::placeholder {
    color: rgba(159, 177, 213, 0.78) !important;
    opacity: 1;
}

.filters[b-bm508b7clm]  .mud-input-adornment .mud-icon-root,
.filters[b-bm508b7clm]  .mud-picker-open-button svg {
    color: #8ad8ff;
    opacity: 0.9;
}

.filters[b-bm508b7clm]  .mud-picker-content,
.filters[b-bm508b7clm]  .mud-picker-container,
.filters[b-bm508b7clm]  .mud-popover-surface {
    background: rgba(10, 16, 32, 0.96);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
}

.filters[b-bm508b7clm]  .mud-day,
.filters[b-bm508b7clm]  .mud-picker-month,
.filters[b-bm508b7clm]  .mud-picker-year {
    color: var(--text-primary);
}

.filters[b-bm508b7clm]  .mud-day.mud-selected,
.filters[b-bm508b7clm]  .mud-picker-month.mud-selected,
.filters[b-bm508b7clm]  .mud-picker-year.mud-selected {
    background: linear-gradient(135deg, rgba(88, 196, 255, 0.35), rgba(124, 93, 255, 0.35));
    color: #0b1021;
}

.payments-toggle[b-bm508b7clm] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.payments-toggle-input[b-bm508b7clm] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.payments-toggle-track[b-bm508b7clm] {
    position: relative;
    width: 2.5rem;
    height: 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.payments-toggle-track[b-bm508b7clm]::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease;
}

.payments-toggle-input:checked + .payments-toggle-track[b-bm508b7clm] {
    background: linear-gradient(135deg, #58c4ff, #7c5dff);
    border-color: rgba(255, 255, 255, 0.22);
}

.payments-toggle-input:checked + .payments-toggle-track[b-bm508b7clm]::after {
    transform: translateX(1.1rem);
}

.payments-toggle-input:focus-visible + .payments-toggle-track[b-bm508b7clm] {
    box-shadow: 0 0 0 0.1rem rgba(255, 255, 255, 0.2), 0 0 0 0.25rem rgba(88, 196, 255, 0.35);
}

.payments-toggle-input:disabled + .payments-toggle-track[b-bm508b7clm],
.payments-toggle-input:disabled ~ .payments-toggle-label[b-bm508b7clm] {
    opacity: 0.55;
    cursor: not-allowed;
}

.payments-toggle-label[b-bm508b7clm] {
    min-width: 1.5rem;
}

@media (max-width: 1399.98px) {
    .filter-panel-search[b-bm508b7clm],
    .filter-panel-status[b-bm508b7clm],
    .filter-panel-meta[b-bm508b7clm],
    .filter-panel-range[b-bm508b7clm],
    .filter-panel-contribution[b-bm508b7clm],
    .filter-panel-actions[b-bm508b7clm] {
        grid-column: span 6;
    }
}

@media (max-width: 991.98px) {
    .filter-panel-search[b-bm508b7clm],
    .filter-panel-status[b-bm508b7clm],
    .filter-panel-meta[b-bm508b7clm],
    .filter-panel-range[b-bm508b7clm],
    .filter-panel-contribution[b-bm508b7clm],
    .filter-panel-actions[b-bm508b7clm] {
        grid-column: span 12;
    }

    .filter-inline-grid[b-bm508b7clm] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/RecurringSendEdit.razor.rz.scp.css */
.recurring-editor-shell[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recurring-editor-header[b-mjb69sd7nw] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.12));
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.recurring-editor-header-main[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recurring-editor-back[b-mjb69sd7nw] {
    width: fit-content;
}

.recurring-editor-eyebrow[b-mjb69sd7nw],
.wizard-panel-kicker[b-mjb69sd7nw],
.wizard-surface-label[b-mjb69sd7nw],
.summary-detail-label[b-mjb69sd7nw],
.editor-info-label[b-mjb69sd7nw] {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
}

.recurring-editor-title[b-mjb69sd7nw] {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
}

.recurring-editor-subtitle[b-mjb69sd7nw],
.wizard-panel-header p[b-mjb69sd7nw] {
    margin: 0.5rem 0 0;
    color: #475569;
    max-width: 65ch;
}

.recurring-editor-header-status[b-mjb69sd7nw] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.25);
    font-weight: 700;
    white-space: nowrap;
}

.recurring-editor-header-status.is-ready[b-mjb69sd7nw] {
    color: #166534;
    border-color: rgba(34, 197, 94, 0.3);
}

.recurring-editor-header-status.is-draft[b-mjb69sd7nw] {
    color: #1d4ed8;
}

.editor-info-card[b-mjb69sd7nw],
.wizard-card[b-mjb69sd7nw] {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.5rem;
    box-shadow: 0 24px 48px -30px rgba(15, 23, 42, 0.28);
}

.editor-info-card[b-mjb69sd7nw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    align-items: center;
}

.editor-info-block[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.editor-info-actions[b-mjb69sd7nw] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.recurring-editor-grid[b-mjb69sd7nw] {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}

.recurring-editor-main[b-mjb69sd7nw] {
    padding: 1.5rem;
}

.recurring-editor-sidebar[b-mjb69sd7nw] {
    position: sticky;
    top: 1.5rem;
}

.wizard-stepper[b-mjb69sd7nw] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.wizard-step[b-mjb69sd7nw] {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    width: 100%;
    padding: 1rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #f8fafc;
    text-align: left;
    transition: all 0.2s ease;
}

.wizard-step:hover[b-mjb69sd7nw] {
    border-color: rgba(37, 99, 235, 0.28);
    transform: translateY(-1px);
}

.wizard-step.is-active[b-mjb69sd7nw] {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.06));
    border-color: rgba(37, 99, 235, 0.35);
}

.wizard-step.is-complete .wizard-step-number[b-mjb69sd7nw] {
    background: #16a34a;
    color: #fff;
}

.wizard-step-number[b-mjb69sd7nw] {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e2e8f0;
    font-weight: 700;
}

.wizard-step-copy[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.wizard-step-title[b-mjb69sd7nw] {
    font-weight: 700;
    color: #0f172a;
}

.wizard-step-description[b-mjb69sd7nw] {
    color: #64748b;
    font-size: 0.88rem;
}

.wizard-panel[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wizard-panel-header[b-mjb69sd7nw],
.summary-card-header[b-mjb69sd7nw],
.history-card-header[b-mjb69sd7nw] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.wizard-panel-header h2[b-mjb69sd7nw],
.summary-card-header h3[b-mjb69sd7nw],
.history-card-header h3[b-mjb69sd7nw] {
    margin: 0.35rem 0 0;
    font-size: 1.35rem;
    font-weight: 800;
}

.wizard-panel-actions[b-mjb69sd7nw],
.wizard-panel-actions-inline[b-mjb69sd7nw] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.wizard-section-grid[b-mjb69sd7nw] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.wizard-section-grid-single[b-mjb69sd7nw] {
    grid-template-columns: minmax(0, 1fr);
}

.wizard-surface[b-mjb69sd7nw] {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.wizard-surface-compact[b-mjb69sd7nw] {
    align-self: start;
}

.wizard-highlight[b-mjb69sd7nw] {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(37, 99, 235, 0.08));
    border-color: rgba(37, 99, 235, 0.2);
}

.wizard-label[b-mjb69sd7nw] {
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.wizard-help-row[b-mjb69sd7nw],
.wizard-code-row[b-mjb69sd7nw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    color: #64748b;
    font-size: 0.92rem;
}

.wizard-help-strong[b-mjb69sd7nw] {
    font-weight: 700;
    color: #0f172a;
}

.wizard-name-preview[b-mjb69sd7nw] {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0.35rem 0 0.9rem;
    color: #0f172a;
}

.wizard-chip-row[b-mjb69sd7nw],
.wizard-chip-selectors[b-mjb69sd7nw] {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.wizard-chip[b-mjb69sd7nw],
.wizard-inline-badge[b-mjb69sd7nw] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.18);
    font-size: 0.9rem;
    color: #1e293b;
}

.wizard-chip-wrap[b-mjb69sd7nw] {
    white-space: normal;
}

.wizard-chip-toggle[b-mjb69sd7nw] {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: #fff;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-weight: 700;
    color: #334155;
    transition: all 0.2s ease;
}

.wizard-chip-toggle.is-selected[b-mjb69sd7nw] {
    background: #1d4ed8;
    color: #fff;
    border-color: #1d4ed8;
    box-shadow: 0 12px 24px -20px rgba(29, 78, 216, 0.8);
}

.wizard-stat-grid[b-mjb69sd7nw] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.wizard-stat-card[b-mjb69sd7nw] {
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.wizard-stat-card strong[b-mjb69sd7nw] {
    font-size: 1.25rem;
}

.wizard-stat-label[b-mjb69sd7nw],
.wizard-table-primary[b-mjb69sd7nw] {
    font-weight: 700;
    color: #0f172a;
}

.wizard-table-wrap[b-mjb69sd7nw] {
    max-height: 420px;
    overflow: auto;
    margin-top: 0.75rem;
}

.wizard-table thead th[b-mjb69sd7nw] {
    position: sticky;
    top: 0;
    background: #f8fafc;
    z-index: 1;
}

.wizard-empty-state[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 180px;
    text-align: center;
    color: #64748b;
}

.schedule-option-grid[b-mjb69sd7nw],
.template-choice-grid[b-mjb69sd7nw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
}

.schedule-option[b-mjb69sd7nw],
.template-choice[b-mjb69sd7nw] {
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: #fff;
    border-radius: 1.2rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    transition: all 0.2s ease;
}

.schedule-option[b-mjb69sd7nw] {
    align-items: flex-start;
}

.schedule-option i[b-mjb69sd7nw] {
    font-size: 1.2rem;
    color: #2563eb;
}

.schedule-option.is-selected[b-mjb69sd7nw],
.template-choice.is-selected[b-mjb69sd7nw] {
    border-color: rgba(37, 99, 235, 0.42);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
    box-shadow: 0 20px 40px -34px rgba(37, 99, 235, 0.55);
}

.template-choice-header[b-mjb69sd7nw] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.template-choice-subtitle[b-mjb69sd7nw],
.template-choice-meta[b-mjb69sd7nw],
.summary-detail small[b-mjb69sd7nw] {
    color: #64748b;
}

.wizard-toggle-card[b-mjb69sd7nw] {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.15rem;
    border-radius: 1.25rem;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.wizard-toggle-card input[b-mjb69sd7nw] {
    margin-top: 0.25rem;
}

.wizard-toggle-card span[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.wizard-actions[b-mjb69sd7nw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    margin-top: 1.5rem;
}

.wizard-actions-caption[b-mjb69sd7nw] {
    color: #475569;
    font-weight: 600;
}

.wizard-actions-buttons[b-mjb69sd7nw] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.summary-card[b-mjb69sd7nw] {
    padding: 1.5rem;
}

.summary-checklist[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.summary-check-item[b-mjb69sd7nw] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: #64748b;
    font-weight: 600;
}

.summary-check-item.is-complete[b-mjb69sd7nw] {
    color: #166534;
}

.summary-detail[b-mjb69sd7nw] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.history-card[b-mjb69sd7nw] {
    padding: 1.5rem;
}

.history-expanded-cell[b-mjb69sd7nw] {
    background: #f8fafc;
}

.wizard-error-cell[b-mjb69sd7nw] {
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recurring-editor-alert[b-mjb69sd7nw],
.wizard-loading[b-mjb69sd7nw] {
    margin: 0;
}

.wizard-loading[b-mjb69sd7nw] {
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.recurring-editor-header-status[b-mjb69sd7nw] {
    background: rgba(7, 17, 34, 0.88);
    color: var(--text-primary);
    border-color: var(--border-color);
    box-shadow: var(--shadow-soft);
}

.recurring-editor-header-status.is-ready[b-mjb69sd7nw] {
    color: #8df5b6;
    border-color: rgba(34, 197, 94, 0.35);
}

.recurring-editor-header-status.is-draft[b-mjb69sd7nw] {
    color: var(--accent-color);
}

.editor-info-card[b-mjb69sd7nw],
.wizard-card[b-mjb69sd7nw],
.wizard-surface[b-mjb69sd7nw],
.wizard-stat-card[b-mjb69sd7nw],
.schedule-option[b-mjb69sd7nw],
.template-choice[b-mjb69sd7nw],
.wizard-toggle-card[b-mjb69sd7nw],
.wizard-loading[b-mjb69sd7nw] {
    background: var(--content-gradient);
    color: var(--text-primary);
    border-color: var(--border-color);
    box-shadow: var(--shadow-soft);
}

.wizard-step[b-mjb69sd7nw] {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-color);
}

.wizard-step.is-active[b-mjb69sd7nw],
.wizard-highlight[b-mjb69sd7nw],
.schedule-option.is-selected[b-mjb69sd7nw],
.template-choice.is-selected[b-mjb69sd7nw] {
    background: linear-gradient(135deg, rgba(88, 196, 255, 0.12), rgba(124, 93, 255, 0.12));
    border-color: rgba(88, 196, 255, 0.28);
}

.wizard-step-number[b-mjb69sd7nw] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.recurring-editor-eyebrow[b-mjb69sd7nw],
.wizard-panel-kicker[b-mjb69sd7nw],
.wizard-surface-label[b-mjb69sd7nw],
.summary-detail-label[b-mjb69sd7nw],
.editor-info-label[b-mjb69sd7nw],
.wizard-step-description[b-mjb69sd7nw],
.recurring-editor-subtitle[b-mjb69sd7nw],
.wizard-panel-header p[b-mjb69sd7nw],
.wizard-help-row[b-mjb69sd7nw],
.wizard-code-row[b-mjb69sd7nw],
.wizard-empty-state[b-mjb69sd7nw],
.template-choice-subtitle[b-mjb69sd7nw],
.template-choice-meta[b-mjb69sd7nw],
.summary-detail small[b-mjb69sd7nw],
.wizard-actions-caption[b-mjb69sd7nw],
.summary-check-item[b-mjb69sd7nw] {
    color: var(--muted-color);
}

.recurring-editor-title[b-mjb69sd7nw],
.wizard-step-title[b-mjb69sd7nw],
.wizard-panel-header h2[b-mjb69sd7nw],
.summary-card-header h3[b-mjb69sd7nw],
.history-card-header h3[b-mjb69sd7nw],
.wizard-help-strong[b-mjb69sd7nw],
.wizard-name-preview[b-mjb69sd7nw],
.wizard-stat-label[b-mjb69sd7nw],
.wizard-table-primary[b-mjb69sd7nw],
.editor-info-card strong[b-mjb69sd7nw],
.summary-detail strong[b-mjb69sd7nw],
.schedule-option[b-mjb69sd7nw],
.template-choice[b-mjb69sd7nw],
.wizard-toggle-card strong[b-mjb69sd7nw],
.wizard-code-row code[b-mjb69sd7nw] {
    color: var(--text-primary);
}

.wizard-chip[b-mjb69sd7nw],
.wizard-inline-badge[b-mjb69sd7nw] {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.wizard-chip-toggle[b-mjb69sd7nw] {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.wizard-chip-toggle.is-selected[b-mjb69sd7nw] {
    color: #0b1021;
}

.wizard-table thead th[b-mjb69sd7nw],
.history-expanded-cell[b-mjb69sd7nw] {
    background: rgba(7, 17, 34, 0.98);
}

.wizard-toggle-card input[b-mjb69sd7nw],
.summary-check-item i[b-mjb69sd7nw],
.schedule-option i[b-mjb69sd7nw] {
    color: var(--accent-color);
}

.summary-check-item.is-complete[b-mjb69sd7nw] {
    color: #8df5b6;
}

.wizard-panel .input-group-text[b-mjb69sd7nw] {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.recurring-editor-shell input[b-mjb69sd7nw]::placeholder,
.recurring-editor-shell textarea[b-mjb69sd7nw]::placeholder {
    color: rgba(159, 177, 213, 0.78);
    opacity: 1;
}

.recurring-editor-shell .form-control[b-mjb69sd7nw],
.recurring-editor-shell .form-select[b-mjb69sd7nw],
.recurring-editor-shell input[type="number"][b-mjb69sd7nw],
.recurring-editor-shell input[type="text"][b-mjb69sd7nw],
.recurring-editor-shell textarea[b-mjb69sd7nw],
.recurring-editor-shell select[b-mjb69sd7nw] {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.recurring-editor-shell .form-control:hover[b-mjb69sd7nw],
.recurring-editor-shell .form-select:hover[b-mjb69sd7nw],
.recurring-editor-shell input[type="number"]:hover[b-mjb69sd7nw],
.recurring-editor-shell input[type="text"]:hover[b-mjb69sd7nw],
.recurring-editor-shell textarea:hover[b-mjb69sd7nw],
.recurring-editor-shell select:hover[b-mjb69sd7nw] {
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(88, 196, 255, 0.22);
}

.recurring-editor-shell .form-control:focus[b-mjb69sd7nw],
.recurring-editor-shell .form-select:focus[b-mjb69sd7nw],
.recurring-editor-shell input[type="number"]:focus[b-mjb69sd7nw],
.recurring-editor-shell input[type="text"]:focus[b-mjb69sd7nw],
.recurring-editor-shell textarea:focus[b-mjb69sd7nw],
.recurring-editor-shell select:focus[b-mjb69sd7nw],
.recurring-editor-shell .form-control:focus-visible[b-mjb69sd7nw],
.recurring-editor-shell .form-select:focus-visible[b-mjb69sd7nw],
.recurring-editor-shell input[type="number"]:focus-visible[b-mjb69sd7nw],
.recurring-editor-shell input[type="text"]:focus-visible[b-mjb69sd7nw],
.recurring-editor-shell textarea:focus-visible[b-mjb69sd7nw],
.recurring-editor-shell select:focus-visible[b-mjb69sd7nw] {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(88, 196, 255, 0.55);
    box-shadow: 0 0 0 0.12rem rgba(255,255,255,0.08), 0 0 0 0.28rem rgba(88,196,255,0.22);
}

@media (max-width: 1200px) {
    .recurring-editor-grid[b-mjb69sd7nw] {
        grid-template-columns: 1fr;
    }

    .recurring-editor-sidebar[b-mjb69sd7nw] {
        position: static;
    }
}

@media (max-width: 900px) {
    .wizard-stepper[b-mjb69sd7nw],
    .wizard-stat-grid[b-mjb69sd7nw],
    .wizard-section-grid[b-mjb69sd7nw] {
        grid-template-columns: 1fr;
    }

    .wizard-actions[b-mjb69sd7nw],
    .recurring-editor-header[b-mjb69sd7nw],
    .wizard-panel-header[b-mjb69sd7nw],
    .history-card-header[b-mjb69sd7nw] {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .recurring-editor-main[b-mjb69sd7nw],
    .summary-card[b-mjb69sd7nw],
    .history-card[b-mjb69sd7nw],
    .editor-info-card[b-mjb69sd7nw],
    .recurring-editor-header[b-mjb69sd7nw] {
        padding: 1rem;
    }

    .wizard-actions-buttons[b-mjb69sd7nw] {
        width: 100%;
    }

    .wizard-actions-buttons .btn[b-mjb69sd7nw] {
        flex: 1 1 auto;
    }
}
/* /Components/Pages/ReminderSelect.razor.rz.scp.css */
.reminder-select-page[b-tvtheo7lka] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reminder-select-header[b-tvtheo7lka] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
}

.reminder-select-subtitle[b-tvtheo7lka] {
    max-width: 52rem;
}

.reminder-select-toolbar[b-tvtheo7lka] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reminder-panel[b-tvtheo7lka] {
    overflow: hidden;
}

.reminder-section-label[b-tvtheo7lka] {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-color);
    font-weight: 700;
}

.template-select-wrap[b-tvtheo7lka] {
    position: relative;
}

.template-select-wrap[b-tvtheo7lka]::after {
    content: "▾";
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.1rem;
    pointer-events: none;
}

.template-select[b-tvtheo7lka] {
    min-height: 3.6rem;
    padding: 0.95rem 3rem 0.95rem 1rem;
    border-radius: 12px;
    appearance: none;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(88, 196, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.template-select:focus[b-tvtheo7lka] {
    border-color: rgba(88, 196, 255, 0.55);
}

.selected-template-chip[b-tvtheo7lka] {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(88, 196, 255, 0.25);
    background: rgba(88, 196, 255, 0.1);
}

.summary-panel[b-tvtheo7lka] {
    gap: 1rem;
}

.summary-grid[b-tvtheo7lka] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.summary-item[b-tvtheo7lka] {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
}

.summary-value[b-tvtheo7lka] {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.summary-label[b-tvtheo7lka] {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.summary-template[b-tvtheo7lka] {
    color: var(--muted-color);
}

.recipients-panel[b-tvtheo7lka] {
    margin-top: 0.25rem;
}

.reminder-table-header[b-tvtheo7lka] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
}

.selected-pill[b-tvtheo7lka] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 93, 255, 0.28);
    background: rgba(124, 93, 255, 0.14);
    color: var(--text-primary);
    font-weight: 600;
}

.reminder-table thead th[b-tvtheo7lka] {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-color) !important;
    font-weight: 700;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

.reminder-table td[b-tvtheo7lka] {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.select-col[b-tvtheo7lka],
.select-cell[b-tvtheo7lka] {
    width: 3.5rem;
}

.reminder-table tbody tr.is-selected > *[b-tvtheo7lka] {
    background: rgba(88, 196, 255, 0.08) !important;
}

.member-cell[b-tvtheo7lka] {
    min-width: 18rem;
}

.member-name[b-tvtheo7lka] {
    font-weight: 600;
}

.member-meta[b-tvtheo7lka] {
    font-size: 0.85rem;
    color: var(--muted-color);
}

.email-link[b-tvtheo7lka] {
    color: var(--text-primary) !important;
    text-decoration: none;
}

.email-link:hover[b-tvtheo7lka] {
    color: var(--accent-color) !important;
}

.owed-cell[b-tvtheo7lka] {
    white-space: nowrap;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .summary-grid[b-tvtheo7lka] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .reminder-table-header[b-tvtheo7lka] {
        align-items: flex-start;
    }

    .member-cell[b-tvtheo7lka] {
        min-width: 14rem;
    }
}
/* /Components/Pages/ReminderTemplate.razor.rz.scp.css */
/* ── Page header ── */
.page-header[b-d6l97fv9q6] {
    margin-bottom: 1.5rem;
}

.page-header h1[b-d6l97fv9q6] {
    margin-bottom: 0.25rem;
}

.page-subtitle[b-d6l97fv9q6] {
    color: var(--muted-color);
    font-size: 0.95rem;
    margin: 0;
}

/* ── Status tabs ── */
.reminder-tabs[b-d6l97fv9q6] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.reminder-tab[b-d6l97fv9q6] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    background: var(--surface);
    color: var(--text-primary);
}

.reminder-tab:hover[b-d6l97fv9q6] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reminder-tab-icon[b-d6l97fv9q6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.reminder-tab-icon .bi[b-d6l97fv9q6] { font-size: inherit; }

/* Paid */
.reminder-tab-paid .reminder-tab-icon[b-d6l97fv9q6] { color: #198754; }
.reminder-tab-paid[b-d6l97fv9q6] { border-color: #198754; color: #198754; }
.reminder-tab-paid:hover[b-d6l97fv9q6] { box-shadow: 0 4px 14px rgba(25, 135, 84, 0.3); }
.reminder-tab-paid.active[b-d6l97fv9q6] {
    background: #198754;
    color: #fff;
    border-color: #198754;
    box-shadow: 0 4px 14px rgba(25, 135, 84, 0.4);
}
.reminder-tab-paid.active .reminder-tab-icon[b-d6l97fv9q6] { color: #fff; }

/* Partial */
.reminder-tab-partial .reminder-tab-icon[b-d6l97fv9q6] { color: #fd7e14; }
.reminder-tab-partial[b-d6l97fv9q6] { border-color: #fd7e14; color: #b45309; }
.reminder-tab-partial:hover[b-d6l97fv9q6] { box-shadow: 0 4px 14px rgba(253, 126, 20, 0.3); }
.reminder-tab-partial.active[b-d6l97fv9q6] {
    background: #fd7e14;
    color: #fff;
    border-color: #fd7e14;
    box-shadow: 0 4px 14px rgba(253, 126, 20, 0.4);
}
.reminder-tab-partial.active .reminder-tab-icon[b-d6l97fv9q6] { color: #fff; }

/* No payments */
.reminder-tab-none .reminder-tab-icon[b-d6l97fv9q6] { color: #dc3545; }
.reminder-tab-none[b-d6l97fv9q6] { border-color: #dc3545; color: #dc3545; }
.reminder-tab-none:hover[b-d6l97fv9q6] { box-shadow: 0 4px 14px rgba(220, 53, 69, 0.3); }
.reminder-tab-none.active[b-d6l97fv9q6] {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
    box-shadow: 0 4px 14px rgba(220, 53, 69, 0.4);
}
.reminder-tab-none.active .reminder-tab-icon[b-d6l97fv9q6] { color: #fff; }

/* ── Two-panel layout ── */
.template-layout[b-d6l97fv9q6] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1100px) {
    .template-layout[b-d6l97fv9q6] {
        grid-template-columns: 1fr;
    }
}

/* ── Editor card ── */
.template-editor-card[b-d6l97fv9q6] {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.editor-section[b-d6l97fv9q6] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.editor-label[b-d6l97fv9q6] {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted-color);
}

.template-textarea[b-d6l97fv9q6] {
    font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
    font-size: 0.88rem;
    line-height: 1.6;
    resize: vertical;
    min-height: 200px;
}

/* ── Variables bar ── */
.variables-bar[b-d6l97fv9q6] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(88, 196, 255, 0.06);
    border: 1px solid rgba(88, 196, 255, 0.15);
}

.variables-label[b-d6l97fv9q6] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 0.25rem;
}

.var-badge[b-d6l97fv9q6] {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-family: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
    font-size: 0.78rem;
    font-weight: 500;
    background: rgba(124, 93, 255, 0.12);
    border: 1px solid rgba(124, 93, 255, 0.3);
    border-radius: 6px;
    color: #c4b5fd;
    user-select: all;
}

/* ── Editor actions ── */
.editor-actions[b-d6l97fv9q6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-save[b-d6l97fv9q6] {
    padding: 0.55rem 1.5rem;
    font-size: 0.95rem;
}

.save-feedback[b-d6l97fv9q6] {
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.save-feedback-ok[b-d6l97fv9q6] { color: #34d399; }
.save-feedback-err[b-d6l97fv9q6] { color: #f87171; }

/* ── Preview card ── */
.template-preview-card[b-d6l97fv9q6] {
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-header[b-d6l97fv9q6] {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.preview-title[b-d6l97fv9q6] {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.preview-hint[b-d6l97fv9q6] {
    font-size: 0.8rem;
    color: #fbbf24;
}

/* ── Search input ── */
.preview-search[b-d6l97fv9q6] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.search-input-wrap[b-d6l97fv9q6] {
    position: relative;
}

.search-icon[b-d6l97fv9q6] {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-color);
    font-size: 0.9rem;
    pointer-events: none;
}

.search-input[b-d6l97fv9q6] {
    padding-left: 2.25rem;
}

/* ── Search results list ── */
.search-results[b-d6l97fv9q6] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 240px;
    overflow-y: auto;
}

.member-row[b-d6l97fv9q6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    transition: background 0.12s ease;
}

.member-row:hover[b-d6l97fv9q6] {
    background: rgba(88, 196, 255, 0.06);
}

.member-info[b-d6l97fv9q6] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.member-name[b-d6l97fv9q6] {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-email[b-d6l97fv9q6] {
    font-size: 0.8rem;
    color: var(--muted-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Preview result ── */
.preview-result[b-d6l97fv9q6] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.preview-meta[b-d6l97fv9q6] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.preview-meta-item[b-d6l97fv9q6] {
    display: flex;
    gap: 0.5rem;
    font-size: 0.88rem;
}

.preview-meta-label[b-d6l97fv9q6] {
    font-weight: 600;
    color: var(--muted-color);
    white-space: nowrap;
}

.preview-email-content[b-d6l97fv9q6] {
    background: #fff;
    color: #1a1a2e;
    border-radius: 8px;
    padding: 1rem;
    overflow-x: auto;
}

.preview-email-content table[b-d6l97fv9q6] {
    width: 100%;
    border-collapse: collapse;
}

.preview-email-content th[b-d6l97fv9q6],
.preview-email-content td[b-d6l97fv9q6] {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    vertical-align: top;
    white-space: normal;
}

.preview-email-content th[b-d6l97fv9q6] {
    background-color: #f8f9fa;
    font-weight: 600;
}
/* /Components/Pages/StripeContributionDownloader.razor.rz.scp.css */
/* ── Page header ── */
.page-header[b-1sdcjboqf8] {
    margin-bottom: 2rem;
}

.page-header h1[b-1sdcjboqf8] {
    margin-bottom: 0.25rem;
}

.page-subtitle[b-1sdcjboqf8] {
    color: var(--muted-color);
    font-size: 0.95rem;
    margin: 0;
}

/* ── Import action card ── */
.import-card[b-1sdcjboqf8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    max-width: 480px;
}

.import-card-icon[b-1sdcjboqf8] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(88, 196, 255, 0.12), rgba(124, 93, 255, 0.12));
    border: 1px solid rgba(88, 196, 255, 0.2);
    color: var(--accent-color);
}

.import-hint[b-1sdcjboqf8] {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin: 0;
}

.import-status[b-1sdcjboqf8] {
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
}

.btn-import[b-1sdcjboqf8] {
    padding: 0.65rem 2rem;
    font-size: 1rem;
}

/* Spinner animation */
.spin[b-1sdcjboqf8] {
    animation: spin-icon-b-1sdcjboqf8 1s linear infinite;
}

@keyframes spin-icon-b-1sdcjboqf8 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Progress bar ── */
.progress-track[b-1sdcjboqf8] {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.progress-bar-animated[b-1sdcjboqf8] {
    height: 100%;
    width: 40%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-2));
    animation: progress-slide-b-1sdcjboqf8 1.2s ease-in-out infinite;
}

@keyframes progress-slide-b-1sdcjboqf8 {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ── Result grid ── */
.result-grid[b-1sdcjboqf8] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 640px;
}

@media (max-width: 600px) {
    .result-grid[b-1sdcjboqf8] {
        grid-template-columns: 1fr;
    }
}

.result-tile[b-1sdcjboqf8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.tile-icon[b-1sdcjboqf8] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 10px;
}

.result-tile-fetched .tile-icon[b-1sdcjboqf8] {
    background: rgba(88, 196, 255, 0.12);
    border: 1px solid rgba(88, 196, 255, 0.25);
    color: #58c4ff;
}

.result-tile-new .tile-icon[b-1sdcjboqf8] {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #34d399;
}

.result-tile-updated .tile-icon[b-1sdcjboqf8] {
    background: rgba(124, 93, 255, 0.12);
    border: 1px solid rgba(124, 93, 255, 0.25);
    color: #a78bfa;
}

.tile-value[b-1sdcjboqf8] {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.tile-label[b-1sdcjboqf8] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Error card ── */
.error-card[b-1sdcjboqf8] {
    margin-top: 1.5rem;
    max-width: 640px;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: #fca5a5;
    font-weight: 500;
}
