/* /Components/Layout/ActionToastHost.razor.rz.scp.css */
.action-toast[b-pguc4rbyqv] {
    width: min(24rem, calc(100vw - 2rem));
    padding: 0.8rem 0.85rem;
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) 1.8rem;
    align-items: center;
    gap: 0.7rem;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 100;
    border: 1px solid color-mix(in srgb, var(--success) 42%, var(--line));
    border-radius: 0.7rem;
    color: var(--ink-900);
    background: color-mix(in srgb, var(--surface) 94%, var(--success-soft));
    box-shadow: 0 1rem 2.5rem color-mix(in srgb, var(--chrome) 20%, transparent);
    animation: toast-in-b-pguc4rbyqv 160ms ease-out;
}

.toast-check[b-pguc4rbyqv] {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    font-weight: 900;
}

.action-toast > div[b-pguc4rbyqv] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.action-toast strong[b-pguc4rbyqv] {
    color: var(--success);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.action-toast div span[b-pguc4rbyqv] {
    font-size: 0.78rem;
}

.action-toast button[b-pguc4rbyqv] {
    width: 1.8rem;
    height: 1.8rem;
    padding: 0;
    border: 0;
    color: var(--muted-strong);
    background: transparent;
    font-size: 1.2rem;
    line-height: 1;
}

@keyframes toast-in-b-pguc4rbyqv {
    from { opacity: 0; transform: translateY(0.5rem); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    .action-toast[b-pguc4rbyqv] {
        right: 0.75rem;
        bottom: 0.75rem;
        width: calc(100vw - 1.5rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .action-toast[b-pguc4rbyqv] { animation: none; }
}
/* /Components/Layout/LiveDataRefresh.razor.rz.scp.css */
.live-update-banner[b-pbt97qpx7b] {
    margin-bottom: 0.8rem;
    padding: 0.65rem 0.75rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid color-mix(in srgb, var(--warning) 42%, var(--line));
    border-radius: 0.55rem;
    color: var(--warning);
    background: var(--warning-soft);
}

.live-update-banner > span[b-pbt97qpx7b] {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 0.22rem color-mix(in srgb, currentColor 15%, transparent);
}

.live-update-banner > div[b-pbt97qpx7b] {
    display: flex;
    flex-direction: column;
}

.live-update-banner strong[b-pbt97qpx7b] {
    font-size: 0.72rem;
}

.live-update-banner small[b-pbt97qpx7b] {
    color: var(--muted-strong);
    font-size: 0.62rem;
}

.live-update-banner button[b-pbt97qpx7b] {
    min-height: 2.25rem;
    padding: 0.45rem 0.65rem;
    border: 1px solid currentColor;
    border-radius: 0.4rem;
    color: inherit;
    background: transparent;
    font-size: 0.65rem;
    font-weight: 850;
}

@media (max-width: 650px) {
    .live-update-banner[b-pbt97qpx7b] {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .live-update-banner button[b-pbt97qpx7b] {
        grid-column: 2;
        width: 100%;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-vw6eyt2m59] {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
}

.sidebar[b-vw6eyt2m59] {
    height: 100vh;
    height: 100dvh;
    position: sticky;
    top: 0;
    align-self: start;
    overflow-y: auto;
    background: var(--chrome);
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
}

.workspace[b-vw6eyt2m59] {
    min-width: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.topbar[b-vw6eyt2m59] {
    min-height: 4rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    backdrop-filter: blur(16px);
}

.mobile-brand[b-vw6eyt2m59] {
    display: none;
}

.topbar-context[b-vw6eyt2m59] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.topbar-kicker[b-vw6eyt2m59] {
    overflow: hidden;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.topbar-context > strong[b-vw6eyt2m59] {
    color: var(--ink-900);
    font-size: 0.8rem;
    font-weight: 650;
    text-transform: capitalize;
}

.topbar-actions[b-vw6eyt2m59] {
    display: flex;
    align-items: center;
    gap: 0.58rem;
}

.service-status[b-vw6eyt2m59] {
    min-height: 2.25rem;
    padding: 0 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: var(--muted-strong);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    white-space: nowrap;
}

.status-dot[b-vw6eyt2m59] {
    width: 0.46rem;
    height: 0.46rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--success) 13%, transparent);
}

.profile-link[b-vw6eyt2m59] {
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 0.5rem;
    color: var(--accent);
    background: var(--surface);
    font-family: var(--font-mono);
    font-weight: 800;
    text-decoration: none;
}

.profile-link:hover[b-vw6eyt2m59] {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.account-menu[b-vw6eyt2m59] {
    display: none;
    position: relative;
}

.account-menu summary[b-vw6eyt2m59] {
    list-style: none;
    cursor: pointer;
}

.account-menu summary[b-vw6eyt2m59]::-webkit-details-marker {
    display: none;
}

.account-menu[open] .profile-link[b-vw6eyt2m59] {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.account-menu__panel[b-vw6eyt2m59] {
    width: min(19rem, calc(100vw - 1.5rem));
    padding: 0.85rem;
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    display: grid;
    gap: 0.25rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.65rem;
    background: var(--surface-raised);
    box-shadow: 0 1rem 2.5rem rgba(17, 14, 30, 0.2);
}

.account-menu__label[b-vw6eyt2m59] {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.account-menu__panel > strong[b-vw6eyt2m59] {
    overflow: hidden;
    margin-bottom: 0.45rem;
    color: var(--ink-900);
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-menu__panel a[b-vw6eyt2m59],
.account-menu__panel button[b-vw6eyt2m59] {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.58rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 0;
    border-radius: 0.4rem;
    color: var(--ink-800);
    background: transparent;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 650;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.account-menu__panel a:hover[b-vw6eyt2m59],
.account-menu__panel button:hover[b-vw6eyt2m59] {
    color: var(--accent);
    background: var(--accent-soft);
}

.account-menu__panel[b-vw6eyt2m59]  .ui-icon {
    font-size: 1.1rem;
}

.content[b-vw6eyt2m59] {
    width: min(100%, 102rem);
    margin: 0 auto;
    padding: 1.6rem 1.5rem 2.5rem;
    flex: 1;
}

#blazor-error-ui[b-vw6eyt2m59] {
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
}

@media (max-width: 900px) {
    .app-shell[b-vw6eyt2m59] {
        display: block;
    }

    .sidebar[b-vw6eyt2m59] {
        height: auto;
        position: static;
        overflow: visible;
    }

    .workspace[b-vw6eyt2m59] {
        padding-bottom: var(--mobile-nav-clearance);
    }

    .topbar[b-vw6eyt2m59] {
        min-height: 3.5rem;
        padding: 0 0.75rem;
        gap: 0.65rem;
    }

    .mobile-brand[b-vw6eyt2m59] {
        min-width: 0;
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        color: var(--ink-900);
        text-decoration: none;
    }

    .mobile-brand > span[b-vw6eyt2m59] {
        width: 1.9rem;
        height: 1.9rem;
        display: grid;
        flex: 0 0 auto;
        place-items: center;
        border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
        border-radius: 0.5rem;
        color: var(--accent);
        background: var(--accent-soft);
        font-size: 1.05rem;
    }

    .mobile-brand strong[b-vw6eyt2m59] {
        overflow: hidden;
        font-family: var(--font-mono);
        font-size: 0.83rem;
        letter-spacing: 0.06em;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .topbar-context[b-vw6eyt2m59] {
        display: none;
    }

    .topbar-actions[b-vw6eyt2m59] {
        margin-left: auto;
        gap: 0.38rem;
    }

    .service-status[b-vw6eyt2m59] {
        width: 1.7rem;
        min-height: 2.25rem;
        padding: 0;
        justify-content: center;
    }

    .status-label[b-vw6eyt2m59],
    .theme-toggle [data-theme-label][b-vw6eyt2m59],
    .profile-link--desktop[b-vw6eyt2m59] {
        display: none;
    }

    .theme-toggle[b-vw6eyt2m59] {
        width: var(--tap-size);
        padding: 0;
        justify-content: center;
    }

    .account-menu[b-vw6eyt2m59] {
        display: block;
    }

    .content[b-vw6eyt2m59] {
        padding: 1.15rem 0.85rem 2rem;
    }

    #blazor-error-ui[b-vw6eyt2m59] {
        bottom: var(--mobile-nav-clearance);
    }
}

@media (max-width: 370px) {
    .mobile-brand strong[b-vw6eyt2m59] {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .topbar[b-vw6eyt2m59] {
        backdrop-filter: none;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-head[b-bvr2c3m86r] {
    min-height: 4.5rem;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand[b-bvr2c3m86r] {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.72rem;
    color: #f5f3ff;
    text-decoration: none;
}

.brand-symbol[b-bvr2c3m86r] {
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
    border-radius: 0.65rem;
    color: #c7c0ff;
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    font-size: 1.25rem;
}

.brand > span:last-child[b-bvr2c3m86r] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.brand strong[b-bvr2c3m86r] {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.11em;
}

.brand small[b-bvr2c3m86r] {
    color: rgba(235, 232, 247, 0.58);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-panel[b-bvr2c3m86r] {
    min-height: calc(100dvh - 4.5rem);
    padding: 0.65rem 0.7rem 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-section[b-bvr2c3m86r] {
    margin: 0.85rem 0.72rem 0.45rem;
    color: rgba(235, 232, 247, 0.64);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

nav[b-bvr2c3m86r]  .nav-link {
    min-height: 2.9rem;
    margin-bottom: 0.18rem;
    padding: 0.62rem 0.72rem;
    display: flex;
    align-items: center;
    gap: 0.78rem;
    border: 1px solid transparent;
    border-radius: 0.48rem;
    color: rgba(235, 232, 247, 0.68);
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 120ms ease, background 120ms ease, border-color 120ms ease;
}

nav[b-bvr2c3m86r]  .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
}

nav[b-bvr2c3m86r]  .nav-link.active {
    border-color: color-mix(in srgb, var(--accent) 35%, transparent);
    color: #fff;
    background: color-mix(in srgb, var(--accent) 16%, transparent);
}

.nav-icon[b-bvr2c3m86r] {
    width: 1.35rem;
    height: 1.35rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: rgba(235, 232, 247, 0.62);
    font-size: 1.2rem;
}

nav[b-bvr2c3m86r]  .nav-link.active .nav-icon {
    color: #c7c0ff;
}

.nav-account[b-bvr2c3m86r] {
    margin-top: 1.4rem;
    padding: 0.9rem 0.72rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-account > div[b-bvr2c3m86r] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.account-label[b-bvr2c3m86r] {
    color: rgba(235, 232, 247, 0.65);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-account strong[b-bvr2c3m86r] {
    overflow: hidden;
    color: rgba(245, 243, 255, 0.76);
    font-size: 0.76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-account button[b-bvr2c3m86r] {
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.48rem;
    color: rgba(245, 243, 255, 0.7);
    background: transparent;
    font-size: 1rem;
    cursor: pointer;
}

.nav-account button:hover[b-bvr2c3m86r] {
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
    .nav-head[b-bvr2c3m86r] {
        display: none;
    }

    .nav-panel[b-bvr2c3m86r] {
        min-height: var(--mobile-nav-clearance);
        padding: 0 0.4rem env(safe-area-inset-bottom, 0px);
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 60;
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.11);
        background: color-mix(in srgb, var(--chrome) 97%, transparent);
        box-shadow: 0 -0.5rem 1.75rem rgba(10, 8, 20, 0.18);
        backdrop-filter: blur(18px);
    }

    nav[b-bvr2c3m86r] {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: stretch;
    }

    .nav-section[b-bvr2c3m86r],
    .nav-account[b-bvr2c3m86r] {
        display: none;
    }

    nav[b-bvr2c3m86r]  .nav-link {
        min-width: 0;
        min-height: 4rem;
        margin: 0;
        padding: 0.38rem 0.16rem 0.3rem;
        position: relative;
        border: 0;
        border-radius: 0;
        flex-direction: column;
        justify-content: center;
        gap: 0.22rem;
        color: rgba(245, 243, 255, 0.58);
        font-size: 0.68rem;
        font-weight: 620;
        text-align: center;
        white-space: nowrap;
    }

    nav[b-bvr2c3m86r]  .nav-link::before {
        width: 1.5rem;
        height: 0.16rem;
        position: absolute;
        top: 0;
        left: 50%;
        border-radius: 999px;
        background: transparent;
        content: "";
        transform: translateX(-50%);
    }

    nav[b-bvr2c3m86r]  .nav-link:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    nav[b-bvr2c3m86r]  .nav-link.active {
        color: #fff;
        background: color-mix(in srgb, var(--accent) 11%, transparent);
    }

    nav[b-bvr2c3m86r]  .nav-link.active::before {
        background: #b9afff;
    }

    .nav-icon[b-bvr2c3m86r] {
        width: 1.45rem;
        height: 1.45rem;
        font-size: 1.35rem;
    }
}

@media (max-width: 360px) {
    nav[b-bvr2c3m86r]  .nav-link {
        font-size: 0.62rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    nav[b-bvr2c3m86r]  .nav-link {
        transition: none;
    }
}
/* /Components/Layout/OperationalFooter.razor.rz.scp.css */
.ops-footer[b-a6q0ljepaq] {
    border-top: 1px solid var(--line);
    color: var(--muted-strong);
    background: color-mix(in srgb, var(--surface) 97%, var(--accent-soft));
}

.ops-footer__desktop[b-a6q0ljepaq] {
    width: min(100%, 102rem);
    min-height: 4rem;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    display: grid;
    grid-template-columns: minmax(9rem, 1fr) auto minmax(12rem, 1fr);
    align-items: center;
    gap: 1rem;
}

.ops-footer__identity[b-a6q0ljepaq],
.ops-footer__state[b-a6q0ljepaq] {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.ops-footer__mark[b-a6q0ljepaq] {
    width: 1.8rem;
    height: 1.8rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 48%, var(--line));
    border-radius: 0.45rem;
    color: var(--accent);
    background: var(--accent-soft);
    font-size: 1rem;
}

.ops-footer__identity > span:last-child[b-a6q0ljepaq],
.ops-footer__state > span:last-child[b-a6q0ljepaq] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ops-footer__identity strong[b-a6q0ljepaq],
.ops-footer__state strong[b-a6q0ljepaq] {
    color: var(--ink-900);
    font-size: 0.78rem;
}

.ops-footer__identity small[b-a6q0ljepaq],
.ops-footer__state small[b-a6q0ljepaq] {
    overflow: hidden;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ops-footer__build[b-a6q0ljepaq] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.ops-footer__build > a[b-a6q0ljepaq],
.ops-footer__build > span[b-a6q0ljepaq] {
    min-height: 1.8rem;
    padding: 0.32rem 0.48rem;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border: 1px solid var(--line);
    border-radius: 0.35rem;
    color: var(--muted-strong);
    background: var(--surface);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-decoration: none;
}

.ops-footer__build a:hover[b-a6q0ljepaq] {
    border-color: var(--accent);
    color: var(--accent);
}

.ops-footer__build span > b[b-a6q0ljepaq],
.ops-footer__build a > span[b-a6q0ljepaq] {
    color: var(--muted);
    font-size: 0.56rem;
    letter-spacing: 0.06em;
}

.ops-footer__state[b-a6q0ljepaq] {
    justify-content: flex-end;
}

.ops-footer__status-dot[b-a6q0ljepaq] {
    width: 0.48rem;
    height: 0.48rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--success) 12%, transparent);
}

.ops-footer__mobile[b-a6q0ljepaq] {
    display: none;
}

@media (max-width: 1080px) {
    .ops-footer__desktop[b-a6q0ljepaq] {
        grid-template-columns: auto minmax(16rem, 1fr) auto;
    }

    .ops-footer__build > span:nth-last-child(2)[b-a6q0ljepaq] {
        display: none;
    }
}

@media (max-width: 900px) {
    .ops-footer__desktop[b-a6q0ljepaq] {
        display: none;
    }

    .ops-footer__mobile[b-a6q0ljepaq] {
        display: block;
    }

    .ops-footer__mobile > summary[b-a6q0ljepaq] {
        min-height: 3rem;
        padding: 0.65rem 0.85rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        color: var(--muted-strong);
        font-family: var(--font-mono);
        font-size: 0.68rem;
        list-style: none;
        cursor: pointer;
    }

    .ops-footer__mobile > summary[b-a6q0ljepaq]::-webkit-details-marker {
        display: none;
    }

    .ops-footer__mobile > summary strong[b-a6q0ljepaq] {
        color: var(--ink-900);
    }

    .ops-footer__mobile-state[b-a6q0ljepaq] {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        color: var(--ink-800);
        white-space: nowrap;
    }

    .ops-footer__mobile-state i[b-a6q0ljepaq] {
        width: 0.4rem;
        height: 0.4rem;
        border-radius: 50%;
        background: var(--success);
    }

    .ops-footer__mobile-state[b-a6q0ljepaq]  .ui-icon {
        font-size: 0.9rem;
        transition: transform 120ms ease;
    }

    .ops-footer__mobile[open] .ops-footer__mobile-state[b-a6q0ljepaq]  .ui-icon {
        transform: rotate(180deg);
    }

    .ops-footer__details[b-a6q0ljepaq] {
        padding: 0.85rem;
        display: grid;
        gap: 0.8rem;
        border-top: 1px solid var(--line);
        background: var(--surface-soft);
    }

    .ops-footer__details > div:first-child[b-a6q0ljepaq] {
        display: flex;
        flex-direction: column;
    }

    .ops-footer__details > div:first-child strong[b-a6q0ljepaq] {
        color: var(--ink-900);
        font-size: 0.8rem;
    }

    .ops-footer__details > div:first-child span[b-a6q0ljepaq],
    .ops-footer__details > small[b-a6q0ljepaq] {
        color: var(--muted);
        font-size: 0.7rem;
    }

    .ops-footer__details dl[b-a6q0ljepaq] {
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .ops-footer__details dl > div[b-a6q0ljepaq] {
        min-width: 0;
    }

    .ops-footer__details dt[b-a6q0ljepaq] {
        color: var(--muted);
        font-family: var(--font-mono);
        font-size: 0.62rem;
        text-transform: uppercase;
    }

    .ops-footer__details dd[b-a6q0ljepaq] {
        overflow: hidden;
        margin: 0.08rem 0 0;
        color: var(--ink-800);
        font-family: var(--font-mono);
        font-size: 0.66rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ops-footer__details nav[b-a6q0ljepaq] {
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem;
    }

    .ops-footer__details a[b-a6q0ljepaq] {
        color: var(--accent);
        font-size: 0.72rem;
        text-underline-offset: 0.18rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ops-footer__mobile-state[b-a6q0ljepaq]  .ui-icon {
        transition: none;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-5e5lz51w0b],
.components-reconnect-repeated-attempt-visible[b-5e5lz51w0b],
.components-reconnect-failed-visible[b-5e5lz51w0b],
.components-pause-visible[b-5e5lz51w0b],
.components-resume-failed-visible[b-5e5lz51w0b],
.components-rejoining-animation[b-5e5lz51w0b] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-5e5lz51w0b],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-5e5lz51w0b],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-5e5lz51w0b],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-5e5lz51w0b],
#components-reconnect-modal.components-reconnect-retrying[b-5e5lz51w0b],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-5e5lz51w0b],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-5e5lz51w0b],
#components-reconnect-modal.components-reconnect-failed[b-5e5lz51w0b],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-5e5lz51w0b] {
    display: block;
}


#components-reconnect-modal[b-5e5lz51w0b] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-5e5lz51w0b 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-5e5lz51w0b 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-5e5lz51w0b 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-5e5lz51w0b]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-5e5lz51w0b 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-5e5lz51w0b {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-5e5lz51w0b {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-5e5lz51w0b {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-5e5lz51w0b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-5e5lz51w0b] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-5e5lz51w0b] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-5e5lz51w0b] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-5e5lz51w0b] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-5e5lz51w0b] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-5e5lz51w0b] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-5e5lz51w0b 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-5e5lz51w0b] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-5e5lz51w0b {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Alerts.razor.rz.scp.css */
.alerts-heading[b-ev19bpfebb] {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.alerts-heading h1[b-ev19bpfebb] {
    max-width: 20ch;
    margin-bottom: 0.55rem;
}

.alerts-heading p:last-child[b-ev19bpfebb] {
    max-width: 46rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 1rem;
}

.alerts-section[b-ev19bpfebb] {
    margin-bottom: 1.5rem;
}

.alerts-section > header[b-ev19bpfebb],
.alerts-section > summary[b-ev19bpfebb] {
    padding: 0 0 0.85rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line-strong);
}

.alerts-section > summary[b-ev19bpfebb] {
    min-height: var(--tap-size);
    cursor: pointer;
    list-style: none;
}

.alerts-section > summary[b-ev19bpfebb]::-webkit-details-marker {
    display: none;
}

.alerts-section > summary[b-ev19bpfebb]::after {
    margin-left: auto;
    color: var(--accent);
    content: "Afficher";
    font-size: 0.875rem;
    font-weight: 700;
}

.alerts-section[open] > summary[b-ev19bpfebb]::after {
    content: "Réduire";
}

.alerts-section > header h2[b-ev19bpfebb],
.alerts-section > header p[b-ev19bpfebb],
.alerts-section > summary h2[b-ev19bpfebb],
.alerts-section > summary p[b-ev19bpfebb] {
    margin: 0;
}

.alerts-section > header > span[b-ev19bpfebb],
.alerts-section > summary > span[b-ev19bpfebb] {
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.alerts-list[b-ev19bpfebb] {
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--surface);
}

.section-clear[b-ev19bpfebb] {
    min-height: 5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-bottom: 1px solid var(--line);
    color: var(--success);
}

.section-clear p[b-ev19bpfebb] {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9375rem;
}

.alert-card[b-ev19bpfebb] {
    min-height: 5.25rem;
    padding: 0.95rem 1rem;
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid var(--info);
    color: var(--ink-900);
    background: var(--surface);
    text-decoration: none;
    transition: background-color 140ms ease;
}

.alert-card:last-child[b-ev19bpfebb] {
    border-bottom: 0;
}

.alert-card:hover[b-ev19bpfebb] {
    background: var(--surface-hover);
}

.alert-card.critical[b-ev19bpfebb] {
    border-left-color: var(--danger);
}

.alert-card.important[b-ev19bpfebb] {
    border-left-color: var(--warning);
}

.alert-icon[b-ev19bpfebb] {
    width: 1.75rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--info) 55%, var(--line));
    border-radius: 50%;
    color: var(--info);
    background: var(--info-soft);
    font-weight: 900;
}

.critical .alert-icon[b-ev19bpfebb] {
    border-color: color-mix(in srgb, var(--danger) 55%, var(--line));
    color: var(--danger);
    background: var(--danger-soft);
}

.important .alert-icon[b-ev19bpfebb] {
    border-color: color-mix(in srgb, var(--warning) 55%, var(--line));
    color: var(--warning);
    background: var(--warning-soft);
}

.alert-card > span:nth-child(2)[b-ev19bpfebb] {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.alert-card small[b-ev19bpfebb] {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.alert-card strong[b-ev19bpfebb] {
    color: var(--ink-950);
    font-size: 1rem;
}

.alert-card > span:nth-child(2) > span[b-ev19bpfebb] {
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.alert-card b[b-ev19bpfebb] {
    min-height: var(--tap-size);
    padding: 0.6rem 0.8rem;
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-size: 0.875rem;
    white-space: nowrap;
}

.all-clear[b-ev19bpfebb] {
    min-height: 6rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-block: 1px solid color-mix(in srgb, var(--success) 35%, var(--line));
    color: var(--success);
    background: color-mix(in srgb, var(--success-soft) 68%, transparent);
}

.all-clear h2[b-ev19bpfebb],
.all-clear p[b-ev19bpfebb] {
    margin: 0;
}

.quality-content[b-ev19bpfebb] {
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--surface);
}

.quality-intro[b-ev19bpfebb] {
    margin: 0;
    padding: 0.85rem 1rem;
    color: var(--muted-strong);
    background: var(--surface-soft);
    font-size: 0.875rem;
}

.quality-list[b-ev19bpfebb] {
    display: grid;
}

.quality-row[b-ev19bpfebb] {
    padding: 0.9rem 1rem;
    display: grid;
    grid-template-columns: minmax(11rem, 0.35fr) minmax(0, 1fr);
    gap: 1rem;
    border-top: 1px solid var(--line);
}

.quality-row:first-child[b-ev19bpfebb] {
    border-top: 0;
}

.quality-name[b-ev19bpfebb],
.quality-links[b-ev19bpfebb] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.quality-name strong[b-ev19bpfebb] {
    color: var(--ink-950);
}

.quality-name small[b-ev19bpfebb] {
    color: var(--muted);
    font-size: 0.8125rem;
}

.quality-links a[b-ev19bpfebb] {
    min-height: 2.25rem;
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    color: var(--ink-800);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.quality-links a:hover[b-ev19bpfebb] {
    color: var(--accent);
}

@media (max-width: 700px) {
    .alerts-heading[b-ev19bpfebb] {
        margin-bottom: 1.5rem;
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .alerts-heading .button-secondary[b-ev19bpfebb] {
        width: 100%;
    }

    .alerts-section > header[b-ev19bpfebb],
    .alerts-section > summary[b-ev19bpfebb] {
        align-items: flex-start;
    }

    .alerts-section > summary > span[b-ev19bpfebb] {
        display: none;
    }

    .alert-card[b-ev19bpfebb] {
        min-height: 0;
        grid-template-columns: 1.75rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .alert-card b[b-ev19bpfebb] {
        min-height: 2.5rem;
        padding: 0.45rem 0;
        grid-column: 2;
        justify-content: flex-start;
    }

    .quality-row[b-ev19bpfebb] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
/* /Components/Pages/Backup.razor.rz.scp.css */
.backup-heading[b-y2kdb4ov23] {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line-strong);
}

.backup-heading h1[b-y2kdb4ov23] { margin-bottom: 0.35rem; }

.backup-heading p:last-child[b-y2kdb4ov23] {
    max-width: 58rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.maintenance-error[b-y2kdb4ov23],
.artifact-result[b-y2kdb4ov23],
.import-result[b-y2kdb4ov23],
.restore-result[b-y2kdb4ov23] {
    margin-bottom: 0.75rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--danger);
    color: var(--danger);
    background: var(--danger-soft);
    font-size: 0.875rem;
}

.artifact-result[b-y2kdb4ov23],
.import-result[b-y2kdb4ov23],
.restore-result[b-y2kdb4ov23] {
    border-color: var(--success);
    color: var(--success);
    background: var(--success-soft);
}

.artifact-result[b-y2kdb4ov23] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.artifact-result > span[b-y2kdb4ov23] {
    width: 1.75rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: color-mix(in srgb, var(--success) 14%, transparent);
    font-weight: 900;
}

.artifact-result > div[b-y2kdb4ov23],
.import-result[b-y2kdb4ov23],
.restore-result[b-y2kdb4ov23] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.artifact-result small[b-y2kdb4ov23],
.import-result span[b-y2kdb4ov23],
.restore-result span[b-y2kdb4ov23],
.import-result small[b-y2kdb4ov23],
.restore-result small[b-y2kdb4ov23] {
    overflow-wrap: anywhere;
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.import-result small[b-y2kdb4ov23],
.restore-result small[b-y2kdb4ov23] {
    font-family: var(--font-mono);
}

.restore-result.unhealthy[b-y2kdb4ov23] {
    border-color: var(--danger);
    color: var(--danger);
    background: var(--danger-soft);
}

.artifact-download[b-y2kdb4ov23] {
    width: fit-content;
    min-height: 2.75rem;
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 800;
}

.maintenance-grid[b-y2kdb4ov23] {
    margin-bottom: 1.25rem;
    display: grid;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.maintenance-card[b-y2kdb4ov23] {
    min-height: 6.6rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.25rem 0.9rem;
    border-top: 1px solid var(--line);
}

.maintenance-card:first-child[b-y2kdb4ov23] { border-top: 0; }

.step[b-y2kdb4ov23] {
    width: 2rem;
    height: 2rem;
    grid-column: 1;
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--accent);
    background: var(--accent-soft);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 900;
}

.maintenance-card h2[b-y2kdb4ov23] {
    grid-column: 2;
    margin: 0;
    font-size: 1.1rem;
}

.maintenance-card p[b-y2kdb4ov23] {
    grid-column: 2;
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.45;
}

.maintenance-card > button[b-y2kdb4ov23] {
    min-height: 2.75rem;
    grid-column: 3;
    grid-row: 1 / span 2;
}

.health-result[b-y2kdb4ov23] {
    margin-top: 0.6rem;
    padding: 0.7rem 0.8rem;
    grid-column: 2 / -1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-left: 3px solid var(--success);
    color: var(--success);
    background: var(--success-soft);
}

.health-result.unhealthy[b-y2kdb4ov23] {
    border-color: var(--danger);
    color: var(--danger);
    background: var(--danger-soft);
}

.health-result span[b-y2kdb4ov23] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.import-preview-panel[b-y2kdb4ov23] {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.preview-heading[b-y2kdb4ov23] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.preview-heading h2[b-y2kdb4ov23] { margin: 0; }

.preview-heading p:last-child[b-y2kdb4ov23] {
    max-width: 56rem;
    margin: 0.35rem 0 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.5;
}

.preview-heading > span[b-y2kdb4ov23] {
    flex: 0 0 auto;
    padding: 0.35rem 0.55rem;
    border: 1px solid color-mix(in srgb, var(--success) 40%, var(--line));
    color: var(--success);
    background: var(--success-soft);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
}

.import-picker[b-y2kdb4ov23] {
    min-height: 5.4rem;
    margin: 1rem 0;
    padding: 0.8rem 0.9rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 18rem);
    align-items: center;
    gap: 0.2rem 1rem;
    border: 1px dashed var(--line-strong);
    background: var(--paper);
    cursor: pointer;
}

.import-picker strong[b-y2kdb4ov23] { font-size: 0.9375rem; }

.import-picker small[b-y2kdb4ov23] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.import-picker input[b-y2kdb4ov23] {
    min-height: 2.75rem;
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 100%;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.preview-summary[b-y2kdb4ov23] {
    padding: 0.85rem 0.95rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-left: 3px solid var(--success);
    background: var(--success-soft);
}

.preview-summary > div[b-y2kdb4ov23] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.preview-summary span[b-y2kdb4ov23],
.preview-summary small[b-y2kdb4ov23],
.preview-summary code[b-y2kdb4ov23] {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.preview-summary span[b-y2kdb4ov23] {
    color: var(--success);
    font-weight: 900;
}

.preview-summary code[b-y2kdb4ov23] {
    max-width: 24rem;
    overflow-wrap: anywhere;
    color: var(--muted-strong);
}

.preview-diagnostics[b-y2kdb4ov23] {
    margin-top: 0.75rem;
    border-block: 1px solid var(--line);
}

.preview-diagnostics > summary[b-y2kdb4ov23],
.artifacts-summary[b-y2kdb4ov23] {
    min-height: 4.4rem;
    padding: 0.75rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
}

.preview-diagnostics > summary[b-y2kdb4ov23]::-webkit-details-marker,
.artifacts-summary[b-y2kdb4ov23]::-webkit-details-marker { display: none; }

.preview-diagnostics > summary[b-y2kdb4ov23]::marker,
.artifacts-summary[b-y2kdb4ov23]::marker { content: ""; }

.preview-diagnostics > summary:hover[b-y2kdb4ov23],
.preview-diagnostics > summary:focus-visible[b-y2kdb4ov23],
.artifacts-summary:hover[b-y2kdb4ov23],
.artifacts-summary:focus-visible[b-y2kdb4ov23] { background: var(--surface-soft); }

.preview-diagnostics > summary > span[b-y2kdb4ov23] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.preview-diagnostics > summary small[b-y2kdb4ov23] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.preview-diagnostics > summary b[b-y2kdb4ov23] {
    color: var(--accent);
    font-size: 0;
}

.preview-diagnostics > summary b[b-y2kdb4ov23]::after {
    content: "Afficher";
    font-size: 0.875rem;
}

.preview-diagnostics[open] > summary b[b-y2kdb4ov23]::after { content: "Masquer"; }

.preview-table-wrap[b-y2kdb4ov23] { overflow-x: auto; }

.preview-table[b-y2kdb4ov23] {
    width: 100%;
    min-width: 38rem;
    border-collapse: collapse;
}

.preview-table th[b-y2kdb4ov23],
.preview-table td[b-y2kdb4ov23] {
    padding: 0.7rem;
    border-top: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.875rem;
    text-align: left;
}

.preview-table th[b-y2kdb4ov23] {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.preview-table td:first-child[b-y2kdb4ov23] {
    display: flex;
    flex-direction: column;
}

.preview-table td small[b-y2kdb4ov23] {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.preview-status[b-y2kdb4ov23] {
    padding: 0.25rem 0.45rem;
    display: inline-flex;
    color: var(--success);
    background: var(--success-soft);
    font-size: 0.8125rem;
    font-weight: 800;
    white-space: nowrap;
}

.preview-status.conflict[b-y2kdb4ov23] {
    color: var(--warning);
    background: var(--warning-soft);
}

.preview-gate[b-y2kdb4ov23] {
    margin: 0.75rem 0 0;
    padding: 0.7rem 0.8rem;
    border-left: 3px solid var(--success);
    color: var(--success);
    background: var(--success-soft);
    font-size: 0.875rem;
}

.preview-gate.has-conflicts[b-y2kdb4ov23] {
    border-color: var(--warning);
    color: var(--warning);
    background: var(--warning-soft);
}

.row-decisions[b-y2kdb4ov23] {
    margin-top: 0.8rem;
    border-block: 1px solid var(--line-strong);
}

.row-decisions-heading[b-y2kdb4ov23],
.row-decision[b-y2kdb4ov23] {
    min-height: 4.5rem;
    padding: 0.7rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.row-decisions-heading[b-y2kdb4ov23] { background: var(--surface-soft); }

.row-decisions-heading > div[b-y2kdb4ov23],
.row-decision > div[b-y2kdb4ov23] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.row-decisions-heading span[b-y2kdb4ov23],
.row-decision > div span[b-y2kdb4ov23] {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 800;
}

.row-decisions-heading strong[b-y2kdb4ov23],
.row-decision > div strong[b-y2kdb4ov23] { font-size: 0.875rem; }

.row-decision[b-y2kdb4ov23] { border-top: 1px solid var(--line); }

.row-decision select[b-y2kdb4ov23] {
    min-width: 15rem;
    min-height: 2.75rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    color: var(--ink);
    background: var(--surface);
    font-size: 0.875rem;
}

.import-confirmation[b-y2kdb4ov23] {
    margin-top: 0.8rem;
    padding: 0.85rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 14rem) auto;
    align-items: end;
    gap: 0.8rem;
    border-block: 1px solid var(--line-strong);
    background: var(--surface-soft);
}

.import-confirmation > div[b-y2kdb4ov23],
.import-confirmation label[b-y2kdb4ov23] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.import-confirmation strong[b-y2kdb4ov23],
.import-confirmation label span[b-y2kdb4ov23] {
    font-size: 0.875rem;
    font-weight: 800;
}

.import-confirmation small[b-y2kdb4ov23] {
    max-width: 44rem;
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.import-confirmation input[b-y2kdb4ov23] {
    min-height: 2.75rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font-mono);
}

.artifacts-panel[b-y2kdb4ov23] {
    margin-bottom: 1rem;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.artifacts-summary > span[b-y2kdb4ov23] {
    display: flex;
    flex-direction: column;
}

.artifacts-heading[b-y2kdb4ov23] {
    color: var(--ink-950);
    font-size: 1.15rem;
    font-weight: 800;
}

.artifacts-summary > strong[b-y2kdb4ov23] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.artifacts-summary > strong b[b-y2kdb4ov23] { color: var(--accent); }

.artifacts-panel:not([open]) .artifacts-summary > strong b[b-y2kdb4ov23] { font-size: 0; }
.artifacts-panel:not([open]) .artifacts-summary > strong b[b-y2kdb4ov23]::after { content: "Déplier"; font-size: 0.875rem; }

.artifacts-body[b-y2kdb4ov23] {
    padding: 0 0.85rem 0.85rem;
    border-top: 1px solid var(--line);
}

.empty[b-y2kdb4ov23] {
    margin: 0;
    padding: 1rem 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.artifact-list[b-y2kdb4ov23] { display: grid; }

.artifact-list article[b-y2kdb4ov23] {
    min-height: 4.6rem;
    padding: 0.7rem 0;
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--line);
}

.artifact-list article:first-child[b-y2kdb4ov23] { border-top: 0; }

.artifact-list article > span[b-y2kdb4ov23] {
    width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    color: var(--accent);
    background: var(--accent-soft);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 900;
}

.artifact-list article > div[b-y2kdb4ov23] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.artifact-list strong[b-y2kdb4ov23] {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 0.875rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.artifact-list small[b-y2kdb4ov23],
.artifact-list b[b-y2kdb4ov23] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.artifact-actions[b-y2kdb4ov23] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.artifact-actions button[b-y2kdb4ov23],
.artifact-actions a[b-y2kdb4ov23] {
    min-height: 2.75rem;
    padding: 0.5rem 0.7rem;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line-strong);
    color: var(--accent);
    background: transparent;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.artifact-actions button:hover[b-y2kdb4ov23],
.artifact-actions a:hover[b-y2kdb4ov23],
.artifact-actions button:focus-visible[b-y2kdb4ov23],
.artifact-actions a:focus-visible[b-y2kdb4ov23] { background: var(--accent-soft); }

@media (max-width: 760px) {
    .preview-heading[b-y2kdb4ov23],
    .preview-summary[b-y2kdb4ov23],
    .row-decisions-heading[b-y2kdb4ov23],
    .row-decision[b-y2kdb4ov23] {
        align-items: stretch;
        flex-direction: column;
    }

    .maintenance-card[b-y2kdb4ov23] {
        grid-template-columns: 2.5rem minmax(0, 1fr);
    }

    .maintenance-card > button[b-y2kdb4ov23],
    .health-result[b-y2kdb4ov23] {
        width: 100%;
        grid-column: 1 / -1;
        grid-row: auto;
        margin-top: 0.55rem;
    }

    .import-picker[b-y2kdb4ov23],
    .import-confirmation[b-y2kdb4ov23] { grid-template-columns: 1fr; }

    .import-picker input[b-y2kdb4ov23] {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0.5rem;
    }

    .row-decision select[b-y2kdb4ov23],
    .row-decision label[b-y2kdb4ov23] {
        width: 100%;
        min-width: 0;
    }

    .import-confirmation .button-primary[b-y2kdb4ov23] { width: 100%; }

    .artifact-list article[b-y2kdb4ov23] {
        grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    }

    .artifact-actions[b-y2kdb4ov23] {
        grid-column: 2 / -1;
        flex-wrap: wrap;
    }
}

@media (max-width: 430px) {
    .maintenance-card[b-y2kdb4ov23] {
        padding-inline: 0.8rem;
    }

    .preview-heading > span[b-y2kdb4ov23] { align-self: stretch; text-align: center; }

    .preview-diagnostics > summary[b-y2kdb4ov23],
    .artifacts-summary[b-y2kdb4ov23] {
        align-items: flex-start;
        flex-direction: column;
    }

    .artifacts-summary > strong[b-y2kdb4ov23] {
        width: 100%;
        justify-content: space-between;
    }

    .artifact-list article[b-y2kdb4ov23] {
        grid-template-columns: 2.5rem minmax(0, 1fr);
    }

    .artifact-list article > b[b-y2kdb4ov23],
    .artifact-actions[b-y2kdb4ov23] { grid-column: 2; }

    .artifact-actions[b-y2kdb4ov23] {
        display: grid;
        grid-template-columns: 1fr;
    }

    .artifact-actions button[b-y2kdb4ov23],
    .artifact-actions a[b-y2kdb4ov23] { justify-content: center; }
}
/* /Components/Pages/BankReconciliation.razor.rz.scp.css */
.bank-heading[b-wvmhbnt4yb] {
    padding-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.bank-heading h1[b-wvmhbnt4yb],
.bank-heading p:last-child[b-wvmhbnt4yb] {
    margin-bottom: 0;
}

.bank-heading > div:first-child p:last-child[b-wvmhbnt4yb] {
    max-width: 60rem;
    color: var(--muted-strong);
}

.no-auto-confirm[b-wvmhbnt4yb] {
    max-width: 22rem;
    padding: 0.75rem 1rem;
    display: grid;
    gap: 0.2rem;
    border-left: 3px solid var(--success);
    border-radius: var(--radius-small);
    background: var(--success-soft);
}

.no-auto-confirm small[b-wvmhbnt4yb] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.bank-message[b-wvmhbnt4yb] {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-small);
    background: var(--accent-soft);
}

.bank-message.success[b-wvmhbnt4yb] {
    border-color: var(--success);
    background: var(--success-soft);
}

.bank-message.error[b-wvmhbnt4yb] {
    border-color: var(--danger);
    background: var(--danger-soft);
}

.bank-kpis[b-wvmhbnt4yb] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
}

.bank-kpis div[b-wvmhbnt4yb] {
    min-height: 5.5rem;
    padding: 0.85rem 1rem;
    display: grid;
    align-content: center;
    gap: 0.25rem;
    border-left: 1px solid var(--line);
}

.bank-kpis div:first-child[b-wvmhbnt4yb] {
    border-left: 0;
}

.bank-kpis span[b-wvmhbnt4yb],
.preview-summary span[b-wvmhbnt4yb] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.bank-kpis strong[b-wvmhbnt4yb] {
    color: var(--ink-950);
    font: 750 1.65rem/1 var(--font-mono);
}

.bank-import[b-wvmhbnt4yb],
.review-register[b-wvmhbnt4yb],
.matched-register[b-wvmhbnt4yb],
.decision-panel[b-wvmhbnt4yb] {
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
}

.bank-import > header[b-wvmhbnt4yb],
.review-register > header[b-wvmhbnt4yb],
.matched-register > header[b-wvmhbnt4yb] {
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.bank-import h2[b-wvmhbnt4yb],
.review-register h2[b-wvmhbnt4yb],
.matched-register h2[b-wvmhbnt4yb] {
    margin: 0.15rem 0 0;
}

.bank-import > header > span[b-wvmhbnt4yb],
.review-register > header > span[b-wvmhbnt4yb],
.matched-register > header > span[b-wvmhbnt4yb] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.import-guide[b-wvmhbnt4yb] {
    border-bottom: 1px solid var(--line);
}

.import-guide > summary[b-wvmhbnt4yb] {
    min-height: 2.75rem;
    padding: 0.65rem 1.1rem;
    display: flex;
    align-items: center;
    color: var(--accent);
    cursor: pointer;
    font-weight: 750;
}

.import-contract[b-wvmhbnt4yb] {
    padding: 0 1.1rem 0.9rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.import-contract > div[b-wvmhbnt4yb] {
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
}

.import-contract p[b-wvmhbnt4yb] {
    margin: 0.25rem 0 0;
    color: var(--muted-strong);
    line-height: 1.45;
}

.import-actions[b-wvmhbnt4yb],
.import-confirmation[b-wvmhbnt4yb] {
    padding: 1rem 1.1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1rem;
}

.import-confirmation[b-wvmhbnt4yb] {
    border-top: 1px solid var(--line);
}

.statement-picker[b-wvmhbnt4yb],
.import-confirmation label[b-wvmhbnt4yb],
.decision-panel label[b-wvmhbnt4yb] {
    display: grid;
    gap: 0.4rem;
    color: var(--ink-800);
    font-size: 0.875rem;
    font-weight: 700;
}

.statement-picker input[b-wvmhbnt4yb],
.import-confirmation input[b-wvmhbnt4yb],
.decision-panel input[b-wvmhbnt4yb] {
    width: 100%;
    min-height: 3rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    color: var(--ink-950);
    background: var(--surface-raised);
}

.statement-picker input[b-wvmhbnt4yb] {
    padding: 0.55rem;
}

.statement-picker small[b-wvmhbnt4yb],
.preview-more[b-wvmhbnt4yb] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.import-actions button[b-wvmhbnt4yb],
.import-confirmation button[b-wvmhbnt4yb],
.decision-actions button[b-wvmhbnt4yb],
.suggestion-row button[b-wvmhbnt4yb],
.transaction-list footer button[b-wvmhbnt4yb],
.matched-list button[b-wvmhbnt4yb] {
    min-height: 2.75rem;
}

.preview-summary[b-wvmhbnt4yb] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.preview-summary div[b-wvmhbnt4yb] {
    min-width: 0;
    padding: 0.8rem 1.1rem;
    display: grid;
    gap: 0.2rem;
    border-left: 1px solid var(--line);
}

.preview-summary div:first-child[b-wvmhbnt4yb] {
    border-left: 0;
}

.preview-summary code[b-wvmhbnt4yb] {
    overflow-wrap: anywhere;
}

.preview-table-wrap[b-wvmhbnt4yb] {
    overflow-x: auto;
}

.preview-table[b-wvmhbnt4yb] {
    width: 100%;
    border-collapse: collapse;
}

.preview-table th[b-wvmhbnt4yb],
.preview-table td[b-wvmhbnt4yb] {
    padding: 0.7rem 0.8rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.preview-table th[b-wvmhbnt4yb] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.preview-more[b-wvmhbnt4yb] {
    margin: 0.7rem 1.1rem;
}

.decision-panel[b-wvmhbnt4yb] {
    padding: 1rem 1.1rem;
    display: grid;
    grid-template-columns: minmax(18rem, 1.4fr) minmax(15rem, 1fr) auto;
    align-items: end;
    gap: 1rem;
    border-left: 4px solid var(--accent);
}

.decision-panel h2[b-wvmhbnt4yb],
.decision-panel p[b-wvmhbnt4yb] {
    margin: 0.2rem 0;
}

.decision-panel.is-ignore[b-wvmhbnt4yb] {
    border-left-color: var(--warning);
}

.decision-panel.is-correction[b-wvmhbnt4yb] {
    border-left-color: var(--danger);
}

.decision-warning[b-wvmhbnt4yb] {
    color: var(--success);
    font-weight: 700;
}

.decision-actions[b-wvmhbnt4yb] {
    display: flex;
    gap: 0.5rem;
}

.empty-review[b-wvmhbnt4yb] {
    margin: 0;
    padding: 1.5rem 1.1rem;
    color: var(--muted-strong);
}

.transaction-list article[b-wvmhbnt4yb],
.matched-list article[b-wvmhbnt4yb] {
    border-top: 1px solid var(--line);
}

.transaction-list article:first-child[b-wvmhbnt4yb],
.matched-list article:first-child[b-wvmhbnt4yb] {
    border-top: 0;
}

.transaction-fact[b-wvmhbnt4yb] {
    padding: 0.9rem 1.1rem;
    display: grid;
    grid-template-columns: 4.5rem minmax(12rem, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.transaction-fact > div[b-wvmhbnt4yb],
.score[b-wvmhbnt4yb],
.no-suggestion[b-wvmhbnt4yb] {
    display: grid;
    gap: 0.15rem;
}

.transaction-fact small[b-wvmhbnt4yb],
.suggestion-row small[b-wvmhbnt4yb],
.matched-list small[b-wvmhbnt4yb],
.no-suggestion small[b-wvmhbnt4yb],
.match-reasons small[b-wvmhbnt4yb] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.transaction-fact b[b-wvmhbnt4yb] {
    color: var(--ink-950);
    font: 750 1.15rem var(--font-mono);
}

.direction[b-wvmhbnt4yb] {
    min-height: 1.8rem;
    padding: 0.3rem 0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--danger);
    border-radius: 999px;
    color: var(--danger);
    font-size: 0.8125rem;
    font-weight: 750;
    text-transform: uppercase;
}

.direction.credit[b-wvmhbnt4yb] {
    border-color: var(--success);
    color: var(--success);
}

.suggestions[b-wvmhbnt4yb],
.no-suggestion[b-wvmhbnt4yb] {
    margin: 0 1.1rem 0.9rem 6.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    overflow: hidden;
}

.suggestion-row[b-wvmhbnt4yb] {
    min-height: 4.75rem;
    padding: 0.75rem;
    display: grid;
    grid-template-columns: 4.25rem minmax(12rem, 1fr) minmax(12rem, 1fr) auto;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
}

.suggestion-row:first-child[b-wvmhbnt4yb] {
    border-top: 0;
}

.suggestion-row > div:nth-child(2)[b-wvmhbnt4yb] {
    display: grid;
    gap: 0.15rem;
}

.score[b-wvmhbnt4yb] {
    color: var(--accent);
}

.score strong[b-wvmhbnt4yb] {
    font: 750 1.25rem var(--font-mono);
}

.reasons[b-wvmhbnt4yb],
.match-reasons[b-wvmhbnt4yb] {
    min-width: 0;
}

.reasons summary[b-wvmhbnt4yb],
.match-reasons summary[b-wvmhbnt4yb] {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 750;
}

.reasons span[b-wvmhbnt4yb],
.match-reasons small[b-wvmhbnt4yb] {
    padding: 0.35rem 0 0.6rem;
    display: block;
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.no-suggestion[b-wvmhbnt4yb] {
    padding: 0.8rem;
}

.transaction-list footer[b-wvmhbnt4yb] {
    padding: 0.4rem 1.1rem 0.65rem;
    text-align: right;
}

.matched-list article[b-wvmhbnt4yb] {
    min-height: 5.25rem;
    padding: 0.85rem 1.1rem;
    display: grid;
    grid-template-columns: minmax(10rem, 1fr) minmax(9rem, 0.8fr) minmax(10rem, 1.1fr) auto;
    align-items: center;
    gap: 1rem;
}

.matched-list article > div[b-wvmhbnt4yb] {
    display: grid;
    gap: 0.2rem;
}

.matched-list article > div:last-child[b-wvmhbnt4yb] {
    justify-items: end;
}

@media (max-width: 1050px) {
    .decision-panel[b-wvmhbnt4yb],
    .suggestion-row[b-wvmhbnt4yb],
    .matched-list article[b-wvmhbnt4yb] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .decision-panel > div:first-child[b-wvmhbnt4yb],
    .suggestion-row .reasons[b-wvmhbnt4yb] {
        grid-column: 1 / -1;
    }

    .suggestions[b-wvmhbnt4yb],
    .no-suggestion[b-wvmhbnt4yb] {
        margin-left: 1.1rem;
    }
}

@media (max-width: 700px) {
    .bank-heading[b-wvmhbnt4yb],
    .bank-import > header[b-wvmhbnt4yb],
    .review-register > header[b-wvmhbnt4yb],
    .matched-register > header[b-wvmhbnt4yb] {
        align-items: flex-start;
        flex-direction: column;
    }

    .no-auto-confirm[b-wvmhbnt4yb] {
        width: 100%;
        max-width: none;
    }

    .bank-kpis[b-wvmhbnt4yb],
    .preview-summary[b-wvmhbnt4yb] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bank-kpis div:nth-child(odd)[b-wvmhbnt4yb],
    .preview-summary div:nth-child(odd)[b-wvmhbnt4yb] {
        border-left: 0;
    }

    .bank-kpis div:nth-child(n + 3)[b-wvmhbnt4yb],
    .preview-summary div:nth-child(n + 3)[b-wvmhbnt4yb] {
        border-top: 1px solid var(--line);
    }

    .import-contract[b-wvmhbnt4yb],
    .import-actions[b-wvmhbnt4yb],
    .import-confirmation[b-wvmhbnt4yb],
    .decision-panel[b-wvmhbnt4yb],
    .suggestion-row[b-wvmhbnt4yb],
    .matched-list article[b-wvmhbnt4yb] {
        grid-template-columns: 1fr;
    }

    .import-actions button[b-wvmhbnt4yb],
    .import-confirmation button[b-wvmhbnt4yb],
    .decision-actions[b-wvmhbnt4yb],
    .decision-actions button[b-wvmhbnt4yb],
    .suggestion-row button[b-wvmhbnt4yb] {
        width: 100%;
    }

    .preview-table-wrap[b-wvmhbnt4yb] {
        padding: 0 1rem;
        overflow: visible;
    }

    .preview-table[b-wvmhbnt4yb],
    .preview-table tbody[b-wvmhbnt4yb],
    .preview-table tr[b-wvmhbnt4yb],
    .preview-table td[b-wvmhbnt4yb] {
        display: block;
        width: 100%;
    }

    .preview-table thead[b-wvmhbnt4yb] {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .preview-table tr[b-wvmhbnt4yb] {
        padding: 0.6rem 0;
        border-bottom: 1px solid var(--line);
    }

    .preview-table td[b-wvmhbnt4yb] {
        min-height: 1.75rem;
        padding: 0.15rem 0;
        display: grid;
        grid-template-columns: 5.5rem minmax(0, 1fr);
        gap: 0.65rem;
        border-bottom: 0;
        overflow-wrap: anywhere;
    }

    .preview-table td[b-wvmhbnt4yb]::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 0.8125rem;
        font-weight: 700;
    }

    .transaction-fact[b-wvmhbnt4yb] {
        grid-template-columns: 4.5rem minmax(0, 1fr);
    }

    .transaction-fact b[b-wvmhbnt4yb] {
        grid-column: 2;
    }

    .suggestions[b-wvmhbnt4yb],
    .no-suggestion[b-wvmhbnt4yb] {
        margin: 0 0.9rem 0.8rem;
    }

    .suggestion-row .reasons[b-wvmhbnt4yb],
    .decision-panel > div:first-child[b-wvmhbnt4yb] {
        grid-column: auto;
    }

    .transaction-list footer[b-wvmhbnt4yb] {
        padding-right: 0.9rem;
        padding-left: 0.9rem;
    }

    .transaction-list footer button[b-wvmhbnt4yb] {
        width: 100%;
    }

    .matched-list article > div:last-child[b-wvmhbnt4yb] {
        justify-items: start;
    }
}

@media (max-width: 380px) {
    .bank-kpis[b-wvmhbnt4yb],
    .preview-summary[b-wvmhbnt4yb] {
        grid-template-columns: 1fr;
    }

    .bank-kpis div[b-wvmhbnt4yb],
    .bank-kpis div:nth-child(odd)[b-wvmhbnt4yb],
    .bank-kpis div:nth-child(n + 3)[b-wvmhbnt4yb],
    .preview-summary div[b-wvmhbnt4yb],
    .preview-summary div:nth-child(odd)[b-wvmhbnt4yb],
    .preview-summary div:nth-child(n + 3)[b-wvmhbnt4yb] {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .bank-kpis div:first-child[b-wvmhbnt4yb],
    .preview-summary div:first-child[b-wvmhbnt4yb] {
        border-top: 0;
    }

    .transaction-fact[b-wvmhbnt4yb] {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .transaction-fact b[b-wvmhbnt4yb] {
        grid-column: auto;
    }

    .direction[b-wvmhbnt4yb] {
        justify-self: start;
    }

    .preview-table td[b-wvmhbnt4yb] {
        grid-template-columns: 1fr;
        gap: 0.05rem;
    }
}
/* /Components/Pages/Calendar.razor.rz.scp.css */
.calendar-heading[b-xu1zvmr8wu] {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.calendar-heading h1[b-xu1zvmr8wu] {
    margin-bottom: 0.35rem;
    text-transform: capitalize;
}

.calendar-heading p:last-child[b-xu1zvmr8wu] {
    max-width: 50rem;
    margin: 0;
    color: var(--muted-strong);
}

.calendar-commands[b-xu1zvmr8wu] {
    display: flex;
    flex: 0 0 auto;
    gap: 0.55rem;
}

.calendar-toolbar[b-xu1zvmr8wu] {
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.month-navigation[b-xu1zvmr8wu],
.state-filters[b-xu1zvmr8wu] {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--surface);
}

.month-navigation a[b-xu1zvmr8wu],
.state-filters a[b-xu1zvmr8wu] {
    min-width: var(--tap-size);
    min-height: var(--tap-size);
    padding: 0.55rem 0.9rem;
    display: grid;
    place-items: center;
    border-left: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.month-navigation a:first-child[b-xu1zvmr8wu],
.state-filters a:first-child[b-xu1zvmr8wu] {
    border-left: 0;
}

.state-filters a.active[b-xu1zvmr8wu] {
    color: var(--accent-contrast);
    background: var(--accent);
}

.month-navigation a:hover[b-xu1zvmr8wu],
.state-filters a:not(.active):hover[b-xu1zvmr8wu] {
    color: var(--ink-950);
    background: var(--surface-hover);
}

.month-readout[b-xu1zvmr8wu] {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.financial-readout[b-xu1zvmr8wu] {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.financial-readout article[b-xu1zvmr8wu] {
    min-width: 0;
    padding: 0.9rem 1rem;
    display: grid;
    gap: 0.2rem;
    border-left: 1px solid var(--line);
}

.financial-readout article:first-child[b-xu1zvmr8wu] {
    border-left: 0;
}

.financial-readout span[b-xu1zvmr8wu] {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.financial-readout strong[b-xu1zvmr8wu] {
    overflow: hidden;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.financial-readout .confirmed strong[b-xu1zvmr8wu] {
    color: var(--success);
}

.schedule-health[b-xu1zvmr8wu] {
    min-width: 13rem;
    padding: 0.65rem 0.8rem;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
    border-left: 1px solid var(--line);
    background: var(--surface-soft);
}

.schedule-health span[b-xu1zvmr8wu] {
    min-height: 2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.schedule-health strong[b-xu1zvmr8wu] {
    min-width: 1.3rem;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.schedule-health .has-late[b-xu1zvmr8wu],
.schedule-health .has-late strong[b-xu1zvmr8wu] {
    color: var(--danger);
}

.schedule-health .has-undated[b-xu1zvmr8wu],
.schedule-health .has-undated strong[b-xu1zvmr8wu] {
    color: var(--warning);
}

.calendar-layout[b-xu1zvmr8wu] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

.calendar-layout-full[b-xu1zvmr8wu] {
    grid-template-columns: minmax(0, 1fr);
}

.calendar-board[b-xu1zvmr8wu] {
    min-width: 0;
}

.weekday-row[b-xu1zvmr8wu],
.month-grid[b-xu1zvmr8wu] {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weekday-row[b-xu1zvmr8wu] {
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface-soft);
}

.weekday-row span[b-xu1zvmr8wu] {
    padding: 0.65rem 0.5rem;
    border-left: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.weekday-row span:first-child[b-xu1zvmr8wu] {
    border-left: 0;
}

.day-cell[b-xu1zvmr8wu] {
    min-width: 0;
    min-height: 7.5rem;
    padding: 0.45rem;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--surface);
}

.day-cell:nth-child(7n + 1)[b-xu1zvmr8wu] {
    border-left: 0;
}

.day-cell:nth-last-child(-n + 7)[b-xu1zvmr8wu] {
    border-bottom: 0;
}

.day-cell.outside-month[b-xu1zvmr8wu] {
    color: var(--muted);
    background: color-mix(in srgb, var(--surface-soft) 74%, var(--surface));
}

.day-cell.today[b-xu1zvmr8wu] {
    position: relative;
    box-shadow: inset 0 0 0 2px var(--accent);
}

.day-cell > header[b-xu1zvmr8wu] {
    min-height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
}

.day-cell time[b-xu1zvmr8wu] {
    color: var(--muted-strong);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
}

.day-cell.today time[b-xu1zvmr8wu],
.day-cell > header span[b-xu1zvmr8wu] {
    color: var(--accent);
}

.day-cell > header span[b-xu1zvmr8wu] {
    font-size: 0.68rem;
    font-weight: 750;
    text-transform: uppercase;
}

.day-events[b-xu1zvmr8wu] {
    display: grid;
    gap: 0.3rem;
}

.calendar-event[b-xu1zvmr8wu] {
    min-width: 0;
    padding: 0.38rem 0.42rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.15rem 0.35rem;
    border-left: 3px solid var(--warning);
    border-radius: 0.2rem;
    color: var(--ink-900);
    background: var(--warning-soft);
    font-size: 0.75rem;
    line-height: 1.25;
    text-decoration: none;
}

.calendar-event:hover[b-xu1zvmr8wu] {
    filter: brightness(0.98);
}

.calendar-event.late[b-xu1zvmr8wu] {
    border-left-color: var(--danger);
    background: var(--danger-soft);
}

.calendar-event.treated[b-xu1zvmr8wu] {
    border-left-color: var(--success);
    background: var(--success-soft);
}

.calendar-event .event-name[b-xu1zvmr8wu] {
    overflow: hidden;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-event strong[b-xu1zvmr8wu] {
    font-family: var(--font-mono);
    font-size: 0.72rem;
}

.calendar-event small[b-xu1zvmr8wu] {
    grid-column: 1 / -1;
    color: var(--muted-strong);
    font-size: 0.68rem;
    font-weight: 650;
}

.more-events[b-xu1zvmr8wu] {
    color: var(--muted-strong);
    font-size: 0.72rem;
    font-weight: 650;
}

.calendar-sidebar[b-xu1zvmr8wu] {
    border-left: 1px solid var(--line-strong);
    background: var(--surface-soft);
}

.calendar-sidebar > header[b-xu1zvmr8wu] {
    min-height: 3rem;
    padding: 0.7rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.calendar-sidebar > header span[b-xu1zvmr8wu] {
    color: var(--warning);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.calendar-sidebar > header strong[b-xu1zvmr8wu] {
    min-width: 1.75rem;
    min-height: 1.75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--warning);
    background: var(--warning-soft);
    font-family: var(--font-mono);
}

.undated-event[b-xu1zvmr8wu] {
    padding: 0.85rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.3rem 0.65rem;
    border-bottom: 1px solid var(--line);
}

.undated-event:last-child[b-xu1zvmr8wu] {
    border-bottom: 0;
}

.undated-event > div[b-xu1zvmr8wu] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.undated-event > div a[b-xu1zvmr8wu] {
    overflow: hidden;
    color: var(--ink-950);
    font-weight: 700;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.undated-event small[b-xu1zvmr8wu],
.undated-event > span[b-xu1zvmr8wu] {
    color: var(--muted-strong);
    font-size: 0.75rem;
}

.undated-event > span[b-xu1zvmr8wu] {
    grid-column: 1 / -1;
}

.undated-event > strong[b-xu1zvmr8wu] {
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.undated-event > a[b-xu1zvmr8wu] {
    min-height: var(--tap-size);
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-agenda[b-xu1zvmr8wu] {
    display: none;
}

.loading[b-xu1zvmr8wu] {
    padding: 5rem 1rem;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1120px) {
    .calendar-layout[b-xu1zvmr8wu] {
        grid-template-columns: minmax(0, 1fr) 15rem;
    }

    .calendar-layout-full[b-xu1zvmr8wu] {
        grid-template-columns: minmax(0, 1fr);
    }

    .day-cell[b-xu1zvmr8wu] {
        min-height: 6.7rem;
    }

    .calendar-event small[b-xu1zvmr8wu] {
        display: none;
    }
}

@media (max-width: 860px) {
    .calendar-heading[b-xu1zvmr8wu] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .calendar-commands[b-xu1zvmr8wu] {
        width: 100%;
    }

    .calendar-commands a[b-xu1zvmr8wu] {
        flex: 1;
    }

    .calendar-toolbar[b-xu1zvmr8wu] {
        align-items: stretch;
        flex-direction: column;
    }

    .month-navigation[b-xu1zvmr8wu],
    .state-filters[b-xu1zvmr8wu] {
        width: 100%;
    }

    .month-navigation a[b-xu1zvmr8wu],
    .state-filters a[b-xu1zvmr8wu] {
        flex: 1;
    }

    .month-readout[b-xu1zvmr8wu] {
        grid-template-columns: 1fr;
    }

    .schedule-health[b-xu1zvmr8wu] {
        min-width: 0;
        padding: 0.45rem 0.8rem;
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1.25rem;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .calendar-layout[b-xu1zvmr8wu],
    .calendar-layout-full[b-xu1zvmr8wu] {
        grid-template-columns: 1fr;
    }

    .weekday-row[b-xu1zvmr8wu],
    .month-grid[b-xu1zvmr8wu] {
        display: none;
    }

    .mobile-agenda[b-xu1zvmr8wu] {
        display: block;
    }

    .mobile-agenda > header[b-xu1zvmr8wu] {
        min-height: 3rem;
        padding: 0.65rem 0.85rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
        background: var(--surface-soft);
    }

    .mobile-agenda > header span[b-xu1zvmr8wu] {
        color: var(--muted-strong);
        font-size: 0.8rem;
    }

    .mobile-agenda > p[b-xu1zvmr8wu] {
        margin: 0;
        padding: 1.25rem 0.9rem;
        color: var(--muted);
    }

    .agenda-line[b-xu1zvmr8wu] {
        min-height: 4.75rem;
        padding: 0.72rem 0.85rem;
        display: grid;
        grid-template-columns: 2.8rem minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
        border-bottom: 1px solid var(--line);
        border-left: 4px solid var(--warning);
        color: var(--ink-900);
        text-decoration: none;
    }

    .agenda-line:last-child[b-xu1zvmr8wu] {
        border-bottom: 0;
    }

    .agenda-line.late[b-xu1zvmr8wu] {
        border-left-color: var(--danger);
    }

    .agenda-line.treated[b-xu1zvmr8wu] {
        border-left-color: var(--success);
    }

    .agenda-line time[b-xu1zvmr8wu],
    .agenda-line > span:nth-child(2)[b-xu1zvmr8wu],
    .agenda-tail[b-xu1zvmr8wu] {
        display: flex;
        flex-direction: column;
    }

    .agenda-line time[b-xu1zvmr8wu] {
        align-items: center;
        font-family: var(--font-mono);
    }

    .agenda-line time strong[b-xu1zvmr8wu] {
        color: var(--ink-950);
        font-size: 1.2rem;
        line-height: 1;
    }

    .agenda-line time span[b-xu1zvmr8wu],
    .agenda-line small[b-xu1zvmr8wu] {
        color: var(--muted-strong);
        font-size: 0.75rem;
    }

    .agenda-line > span:nth-child(2) > strong[b-xu1zvmr8wu] {
        color: var(--ink-950);
        font-size: 0.9rem;
    }

    .agenda-tail[b-xu1zvmr8wu] {
        align-items: flex-end;
        gap: 0.1rem;
        text-align: right;
    }

    .agenda-tail strong[b-xu1zvmr8wu] {
        color: var(--ink-950);
        font-family: var(--font-mono);
        font-size: 0.82rem;
    }

    .calendar-sidebar[b-xu1zvmr8wu] {
        border-top: 1px solid var(--line-strong);
        border-left: 0;
    }
}

@media (max-width: 540px) {
    .calendar-heading[b-xu1zvmr8wu] {
        margin-bottom: 1rem;
    }

    .calendar-heading p:last-child[b-xu1zvmr8wu] {
        display: none;
    }

    .calendar-commands[b-xu1zvmr8wu] {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .calendar-toolbar[b-xu1zvmr8wu] {
        gap: 0.65rem;
    }

    .state-filters[b-xu1zvmr8wu] {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .state-filters[b-xu1zvmr8wu]::-webkit-scrollbar {
        display: none;
    }

    .state-filters a[b-xu1zvmr8wu] {
        min-width: max-content;
        padding-inline: 0.8rem;
    }

    .financial-readout article[b-xu1zvmr8wu] {
        padding: 0.75rem 0.55rem;
    }

    .financial-readout span[b-xu1zvmr8wu] {
        font-size: 0.68rem;
    }

    .financial-readout strong[b-xu1zvmr8wu] {
        font-size: 0.88rem;
    }

    .schedule-health[b-xu1zvmr8wu] {
        justify-content: space-between;
        gap: 0.5rem;
    }

    .schedule-health span[b-xu1zvmr8wu] {
        font-size: 0.78rem;
    }

    .agenda-line[b-xu1zvmr8wu] {
        grid-template-columns: 2.4rem minmax(0, 1fr) auto;
        gap: 0.55rem;
    }

    .agenda-line > span:nth-child(2) small[b-xu1zvmr8wu] {
        max-width: 10.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .financial-readout[b-xu1zvmr8wu] {
        grid-template-columns: 1fr 1fr;
    }

    .financial-readout article:last-child[b-xu1zvmr8wu] {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .agenda-line[b-xu1zvmr8wu] {
        grid-template-columns: 2.25rem minmax(0, 1fr);
    }

    .agenda-tail[b-xu1zvmr8wu] {
        grid-column: 2;
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
    }
}
/* /Components/Pages/CalendarConnections.razor.rz.scp.css */
.calendar-connect-heading[b-odnvybgr3p] {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line-strong);
}

.calendar-connect-heading h1[b-odnvybgr3p] {
    margin: 0.25rem 0 0.55rem;
    letter-spacing: -0.045em;
}

.calendar-connect-heading p:last-child[b-odnvybgr3p] {
    max-width: 58rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 1rem;
    line-height: 1.6;
}

.calendar-connect-heading > span[b-odnvybgr3p] {
    min-height: 2.25rem;
    padding: 0.45rem 0.65rem;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    border: 1px solid var(--success);
    color: var(--success);
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
}

.integration-message[b-odnvybgr3p] {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-left: 3px solid var(--accent);
    color: var(--accent-strong);
    background: var(--accent-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.integration-message.success[b-odnvybgr3p] {
    border-color: var(--success);
    color: var(--success);
    background: var(--success-soft);
}

.integration-message.error[b-odnvybgr3p] {
    border-color: var(--danger);
    color: var(--danger);
    background: var(--danger-soft);
}

.flow-step-heading[b-odnvybgr3p] {
    margin-top: 1rem;
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.flow-step-heading > span[b-odnvybgr3p] {
    width: 2rem;
    height: 2rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
    color: var(--accent-strong);
    background: var(--accent-soft);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 800;
}

.flow-step-heading h2[b-odnvybgr3p] {
    margin: 0;
}

.flow-step-heading p[b-odnvybgr3p] {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.875rem;
}

.provider-list[b-odnvybgr3p] {
    margin-bottom: 1.25rem;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.provider-row[b-odnvybgr3p] {
    min-height: 5.75rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: minmax(15rem, 1fr) minmax(14rem, 0.8fr) auto;
    align-items: center;
    gap: 1rem;
}

.provider-row + .provider-row[b-odnvybgr3p] {
    border-top: 1px solid var(--line);
}

.provider-identity[b-odnvybgr3p],
.provider-identity > div[b-odnvybgr3p],
.provider-state[b-odnvybgr3p],
.provider-actions[b-odnvybgr3p] {
    display: flex;
}

.provider-identity[b-odnvybgr3p],
.provider-actions[b-odnvybgr3p] {
    align-items: center;
}

.provider-identity[b-odnvybgr3p] {
    min-width: 0;
    gap: 0.8rem;
}

.provider-identity > span[b-odnvybgr3p] {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--accent);
    color: var(--accent-strong);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 900;
}

.provider-identity > div[b-odnvybgr3p],
.provider-state[b-odnvybgr3p] {
    min-width: 0;
    flex-direction: column;
}

.provider-identity strong[b-odnvybgr3p] {
    color: var(--ink-950);
    font-size: 1rem;
}

.provider-identity small[b-odnvybgr3p],
.provider-state small[b-odnvybgr3p],
.config-hint[b-odnvybgr3p] {
    margin-top: 0.2rem;
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.state-pill[b-odnvybgr3p] {
    width: fit-content;
    padding: 0.35rem 0.55rem;
    color: var(--warning);
    background: var(--warning-soft);
    font-size: 0.8125rem;
    font-weight: 800;
}

.state-pill.connected[b-odnvybgr3p] {
    color: var(--success);
    background: var(--success-soft);
}

.state-pill.missing[b-odnvybgr3p] {
    color: var(--muted-strong);
    background: var(--surface-soft);
}

.provider-actions[b-odnvybgr3p] {
    justify-content: flex-end;
    gap: 0.75rem;
}

.provider-actions .button-primary[b-odnvybgr3p],
.provider-actions .button-secondary[b-odnvybgr3p] {
    min-height: 2.75rem;
    min-width: 7rem;
    font-size: 0.875rem;
}

.provider-actions > a:not(.button-primary)[b-odnvybgr3p] {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    color: var(--accent-strong);
    font-size: 0.8125rem;
    font-weight: 700;
}

.disconnect-panel[b-odnvybgr3p] {
    margin-bottom: 1.25rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 15rem) auto auto;
    align-items: end;
    gap: 1rem;
    border-left: 3px solid var(--danger);
    background: var(--danger-soft);
}

.disconnect-panel > div[b-odnvybgr3p],
.disconnect-panel label[b-odnvybgr3p],
.sync-controls label[b-odnvybgr3p],
.sync-confirmation label[b-odnvybgr3p] {
    display: flex;
    flex-direction: column;
}

.disconnect-panel small[b-odnvybgr3p],
.sync-controls small[b-odnvybgr3p],
.sync-confirmation small[b-odnvybgr3p] {
    margin-top: 0.2rem;
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.disconnect-panel label > span[b-odnvybgr3p],
.sync-controls label > span:first-child[b-odnvybgr3p],
.sync-confirmation label > span[b-odnvybgr3p] {
    margin-bottom: 0.4rem;
    color: var(--ink-900);
    font-size: 0.8125rem;
    font-weight: 750;
}

.disconnect-panel input[b-odnvybgr3p],
.sync-controls input[type="month"][b-odnvybgr3p],
.sync-confirmation input[b-odnvybgr3p] {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.6rem 0.7rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.25rem;
    color: var(--ink-950);
    background: var(--surface);
    font-size: 1rem;
}

.disconnect-panel input:focus[b-odnvybgr3p],
.sync-controls input:focus[b-odnvybgr3p],
.sync-confirmation input:focus[b-odnvybgr3p] {
    border-color: var(--accent);
    outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent);
    outline-offset: 1px;
}

.disconnect-panel button[b-odnvybgr3p] {
    min-height: 2.75rem;
    font-size: 0.875rem;
}

.sync-workbench[b-odnvybgr3p] {
    margin-bottom: 1.25rem;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.sync-controls[b-odnvybgr3p] {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    display: grid;
    grid-template-columns: minmax(17rem, 1fr) 11rem minmax(19rem, 1fr) auto;
    align-items: end;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.sync-controls h2[b-odnvybgr3p] {
    margin: 0.25rem 0 0;
}

.privacy-choice[b-odnvybgr3p] {
    min-height: 2.75rem;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.privacy-choice input[b-odnvybgr3p] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.privacy-choice > span[b-odnvybgr3p] {
    display: flex;
    flex-direction: column;
}

.privacy-choice strong[b-odnvybgr3p] {
    color: var(--ink-950);
    font-size: 0.875rem;
}

.sync-controls > .button-primary[b-odnvybgr3p] {
    min-height: 2.75rem;
    min-width: 8.5rem;
    font-size: 0.875rem;
}

.preview-contract[b-odnvybgr3p] {
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.preview-contract > div[b-odnvybgr3p] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.preview-contract span[b-odnvybgr3p],
.preview-contract code[b-odnvybgr3p] {
    color: var(--accent-strong);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.preview-contract strong[b-odnvybgr3p] {
    margin-top: 0.2rem;
    overflow-wrap: anywhere;
    font-size: 0.9375rem;
}

.calendar-preview-row[b-odnvybgr3p] {
    min-height: 4.25rem;
    padding: 0.8rem 1rem;
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--line);
}

.calendar-preview-row time[b-odnvybgr3p],
.calendar-preview-row > span[b-odnvybgr3p] {
    color: var(--accent-strong);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 800;
}

.calendar-preview-row > div[b-odnvybgr3p] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.calendar-preview-row strong[b-odnvybgr3p] {
    overflow-wrap: anywhere;
    color: var(--ink-950);
    font-size: 0.9375rem;
}

.calendar-preview-row small[b-odnvybgr3p] {
    margin-top: 0.2rem;
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.calendar-preview-row.blocked[b-odnvybgr3p] {
    color: var(--muted);
    background: var(--surface-soft);
}

.calendar-preview-row.blocked time[b-odnvybgr3p],
.calendar-preview-row.blocked > span[b-odnvybgr3p] {
    color: var(--warning);
}

.sync-confirmation[b-odnvybgr3p] {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 16rem) auto;
    align-items: end;
    gap: 1.25rem;
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
}

.sync-confirmation strong[b-odnvybgr3p] {
    color: var(--ink-950);
    font-size: 1rem;
}

.sync-provider-actions[b-odnvybgr3p] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
}

.sync-provider-actions button[b-odnvybgr3p] {
    min-height: 2.75rem;
    font-size: 0.875rem;
}

.sync-provider-actions > span[b-odnvybgr3p] {
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.oauth-safety[b-odnvybgr3p] {
    margin-bottom: 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.oauth-safety > summary[b-odnvybgr3p] {
    min-height: 3.5rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    list-style: none;
    cursor: pointer;
}

.oauth-safety > summary[b-odnvybgr3p]::-webkit-details-marker {
    display: none;
}

.oauth-safety > summary[b-odnvybgr3p]::after {
    margin-left: auto;
    color: var(--muted);
    content: "+";
    font-size: 1.35rem;
}

.oauth-safety[open] > summary[b-odnvybgr3p]::after {
    content: "−";
}

.oauth-safety > summary > span[b-odnvybgr3p] {
    display: flex;
    flex-direction: column;
}

.oauth-safety > summary strong[b-odnvybgr3p] {
    color: var(--ink-950);
    font-size: 0.9375rem;
}

.oauth-safety > summary small[b-odnvybgr3p] {
    margin-top: 0.15rem;
    color: var(--muted);
    font-size: 0.8125rem;
}

.oauth-safety > summary:focus-visible[b-odnvybgr3p] {
    outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
    outline-offset: -3px;
}

.safety-content[b-odnvybgr3p] {
    padding: 0 1rem 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.safety-content p[b-odnvybgr3p] {
    margin: 0;
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.safety-content span[b-odnvybgr3p] {
    margin-top: 0.25rem;
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.5;
}

@media (max-width: 1050px) {
    .provider-row[b-odnvybgr3p],
    .sync-controls[b-odnvybgr3p],
    .sync-confirmation[b-odnvybgr3p] {
        grid-template-columns: 1fr 1fr;
    }

    .provider-actions[b-odnvybgr3p],
    .sync-provider-actions[b-odnvybgr3p] {
        justify-content: flex-start;
    }

    .disconnect-panel[b-odnvybgr3p] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .calendar-connect-heading[b-odnvybgr3p],
    .preview-contract[b-odnvybgr3p] {
        align-items: flex-start;
        flex-direction: column;
    }

    .provider-row[b-odnvybgr3p],
    .disconnect-panel[b-odnvybgr3p],
    .sync-controls[b-odnvybgr3p],
    .sync-confirmation[b-odnvybgr3p],
    .safety-content[b-odnvybgr3p] {
        grid-template-columns: 1fr;
    }

    .provider-state[b-odnvybgr3p] {
        padding-top: 0.75rem;
        border-top: 1px solid var(--line);
    }

    .provider-actions[b-odnvybgr3p] {
        align-items: stretch;
        flex-direction: column;
    }

    .provider-actions .button-primary[b-odnvybgr3p],
    .provider-actions .button-secondary[b-odnvybgr3p],
    .provider-actions > a[b-odnvybgr3p],
    .disconnect-panel button[b-odnvybgr3p],
    .sync-controls > .button-primary[b-odnvybgr3p],
    .sync-provider-actions[b-odnvybgr3p],
    .sync-provider-actions button[b-odnvybgr3p] {
        width: 100%;
    }

    .provider-actions > a:not(.button-primary)[b-odnvybgr3p] {
        justify-content: center;
        text-align: center;
    }

    .calendar-preview-row[b-odnvybgr3p] {
        grid-template-columns: 4rem minmax(0, 1fr);
    }

    .calendar-preview-row > span[b-odnvybgr3p] {
        grid-column: 2;
    }

    .sync-provider-actions[b-odnvybgr3p] {
        justify-content: stretch;
    }
}

@media (max-width: 430px) {
    .calendar-connect-heading > span[b-odnvybgr3p] {
        width: 100%;
        justify-content: center;
    }

    .provider-row[b-odnvybgr3p],
    .sync-controls[b-odnvybgr3p],
    .sync-confirmation[b-odnvybgr3p] {
        padding-inline: 0.8rem;
    }

    .preview-contract code[b-odnvybgr3p] {
        overflow-wrap: anywhere;
    }
}
/* /Components/Pages/Creances.razor.rz.scp.css */
.registry-heading[b-rrk9losfl3] {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.registry-heading h1[b-rrk9losfl3] {
    max-width: 50rem;
    margin-bottom: 0.4rem;
}

.registry-heading p:last-child[b-rrk9losfl3] {
    max-width: 48rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.registry-actions[b-rrk9losfl3] {
    display: flex;
    gap: 0.55rem;
    flex: 0 0 auto;
}

.filter-bar[b-rrk9losfl3] {
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    display: grid;
    grid-template-columns: minmax(15rem, 1fr) 13rem auto;
    align-items: end;
    gap: 0.85rem;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.filter-bar label[b-rrk9losfl3] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filter-bar label > span[b-rrk9losfl3] {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.filter-bar input[b-rrk9losfl3],
.filter-bar select[b-rrk9losfl3] {
    min-height: 2.75rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    color: var(--ink-900);
    background: var(--paper);
    font-size: 0.9375rem;
}

.result-count[b-rrk9losfl3] {
    min-height: 2.75rem;
    padding-inline: 0.2rem;
    display: flex;
    align-items: center;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.registry-grid[b-rrk9losfl3] {
    display: grid;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.registry-list-header[b-rrk9losfl3],
.debt-card[b-rrk9losfl3] {
    display: grid;
    grid-template-columns:
        minmax(13rem, 1.2fr)
        minmax(9rem, 0.7fr)
        minmax(17rem, 1.25fr)
        minmax(14rem, 1fr)
        minmax(5rem, auto);
    align-items: center;
    column-gap: 1.25rem;
}

.registry-list-header[b-rrk9losfl3] {
    min-height: 2.65rem;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
    background: var(--surface-soft);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.registry-list-header span:last-child[b-rrk9losfl3] { text-align: right; }

.debt-card[b-rrk9losfl3] {
    min-width: 0;
    min-height: 7.25rem;
    padding: 1rem;
    border-top: 1px solid var(--line);
}

.registry-list-header + .debt-card[b-rrk9losfl3] { border-top: 0; }

.debt-card:hover[b-rrk9losfl3] {
    background: color-mix(in srgb, var(--accent) 3%, var(--surface));
}

.debt-card.closed[b-rrk9losfl3] {
    background: color-mix(in srgb, var(--success-soft) 45%, var(--surface));
}

.debt-identity[b-rrk9losfl3],
.balance-line[b-rrk9losfl3],
.next-action[b-rrk9losfl3] {
    min-width: 0;
}

.debt-card-head[b-rrk9losfl3] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 750;
}

.debt-card-head > div[b-rrk9losfl3] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    min-width: 0;
}

.status-dot[b-rrk9losfl3] {
    width: 0.5rem;
    height: 0.5rem;
    flex: 0 0 auto;
    border-radius: 50%;
}

.status-dot.active[b-rrk9losfl3] { background: var(--success); }
.status-dot.closed[b-rrk9losfl3] { background: var(--info); }

.reference[b-rrk9losfl3] {
    overflow: hidden;
    color: var(--accent);
    font-family: var(--font-mono);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.debt-card h2[b-rrk9losfl3] {
    margin: 0.4rem 0 0.1rem;
    overflow: hidden;
    color: var(--ink-950);
    font-size: 1.15rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.manager[b-rrk9losfl3] {
    margin: 0;
    overflow: hidden;
    color: var(--muted-strong);
    font-size: 0.875rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.balance-line[b-rrk9losfl3] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.balance-line strong[b-rrk9losfl3] {
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.balance-type[b-rrk9losfl3] {
    width: fit-content;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 750;
}

.balance-type.estimated[b-rrk9losfl3] { color: var(--success); }
.balance-type.communicated[b-rrk9losfl3] { color: var(--warning); }

dl[b-rrk9losfl3] {
    min-width: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

dl > div[b-rrk9losfl3] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

dt[b-rrk9losfl3] {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
}

dd[b-rrk9losfl3] {
    margin: 0;
    overflow: hidden;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.next-action[b-rrk9losfl3] {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.next-action span[b-rrk9losfl3] {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.next-action strong[b-rrk9losfl3] {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink-900);
    font-size: 0.875rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-link[b-rrk9losfl3] {
    min-height: 2.75rem;
    padding: 0.6rem 0.8rem;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 850;
    text-decoration: none;
}

.card-link:hover[b-rrk9losfl3],
.card-link:focus-visible[b-rrk9losfl3] {
    color: var(--paper);
    background: var(--accent);
}

.empty-state[b-rrk9losfl3] {
    padding: 4rem 1rem;
    color: var(--muted-strong);
    font-size: 0.9375rem;
    text-align: center;
}

@media (max-width: 1180px) {
    .registry-list-header[b-rrk9losfl3] { display: none; }

    .debt-card[b-rrk9losfl3] {
        grid-template-columns: minmax(12rem, 1.15fr) minmax(9rem, 0.7fr) minmax(16rem, 1.25fr) auto;
        row-gap: 0.8rem;
    }

    .registry-list-header + .debt-card[b-rrk9losfl3] { border-top: 0; }

    .next-action[b-rrk9losfl3] {
        grid-column: 1 / 4;
        padding-top: 0.7rem;
        border-top: 1px solid var(--line);
    }

    .card-link[b-rrk9losfl3] {
        grid-column: 4;
        grid-row: 2;
    }
}

@media (max-width: 780px) {
    .registry-heading[b-rrk9losfl3] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .registry-actions[b-rrk9losfl3],
    .registry-actions a[b-rrk9losfl3] { width: 100%; }

    .registry-actions[b-rrk9losfl3] { flex-direction: column; }

    .filter-bar[b-rrk9losfl3] { grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.5fr); }
    .result-count[b-rrk9losfl3] { grid-column: span 2; min-height: auto; }

    .debt-card[b-rrk9losfl3] {
        grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.55fr);
    }

    dl[b-rrk9losfl3] {
        grid-column: span 2;
        padding-block: 0.75rem;
        border-block: 1px solid var(--line);
    }

    .next-action[b-rrk9losfl3] {
        grid-column: 1;
        border-top: 0;
    }

    .card-link[b-rrk9losfl3] {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 560px) {
    .filter-bar[b-rrk9losfl3] { grid-template-columns: 1fr; }
    .result-count[b-rrk9losfl3] { grid-column: auto; }

    .debt-card[b-rrk9losfl3] {
        grid-template-columns: 1fr;
        padding: 1rem 0.85rem;
        gap: 0.8rem;
    }

    .debt-card h2[b-rrk9losfl3],
    .manager[b-rrk9losfl3] {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .balance-line[b-rrk9losfl3] {
        padding-top: 0.75rem;
        border-top: 1px solid var(--line);
    }

    dl[b-rrk9losfl3] {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    dd[b-rrk9losfl3] {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .next-action[b-rrk9losfl3],
    .card-link[b-rrk9losfl3] {
        grid-column: auto;
        grid-row: auto;
    }

    .card-link[b-rrk9losfl3] {
        width: 100%;
        justify-self: stretch;
    }
}
/* /Components/Pages/CreditorEditor.razor.rz.scp.css */
.editor-heading[b-y28i1ucd9t] {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.editor-heading h1[b-y28i1ucd9t] {
    margin: 0.2rem 0 0.35rem;
}

.editor-heading p:last-child[b-y28i1ucd9t] {
    margin: 0;
    color: var(--muted-strong);
}

.status-chip[b-y28i1ucd9t] {
    flex: 0 0 auto;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 99rem;
    font-size: 0.78rem;
    font-weight: 750;
}

.status-chip.active[b-y28i1ucd9t] {
    color: var(--success);
    background: var(--success-soft);
}

.status-chip.closed[b-y28i1ucd9t] {
    color: var(--muted-strong);
    background: var(--surface-soft);
}

.editor-grid[b-y28i1ucd9t] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

.editor-panel[b-y28i1ucd9t] {
    min-width: 0;
    padding: 1.2rem;
    border-bottom: 1px solid var(--line);
}

.editor-panel:nth-child(odd)[b-y28i1ucd9t] {
    border-right: 1px solid var(--line);
}

.editor-panel:nth-last-child(-n + 2)[b-y28i1ucd9t] {
    border-bottom: 0;
}

.editor-panel header[b-y28i1ucd9t] {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    border-bottom: 1px solid var(--line);
}

.editor-panel header > span[b-y28i1ucd9t] {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 750;
}

.editor-panel h2[b-y28i1ucd9t] {
    margin: 0 0 0.2rem;
    font-size: 1.18rem;
}

.editor-panel header p[b-y28i1ucd9t] {
    margin: 0 0 0.85rem;
    color: var(--muted-strong);
    font-size: 0.82rem;
}

.two-columns[b-y28i1ucd9t] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.field[b-y28i1ucd9t] {
    margin-bottom: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field label[b-y28i1ucd9t],
.status-confirmation span[b-y28i1ucd9t] {
    color: var(--ink-900);
    font-size: 0.84rem;
    font-weight: 680;
}

.field[b-y28i1ucd9t]  input,
.field[b-y28i1ucd9t]  select,
.field[b-y28i1ucd9t]  textarea,
.status-confirmation input[b-y28i1ucd9t] {
    width: 100%;
    min-height: 3rem;
    padding: 0.62rem 0.7rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    color: var(--ink-950);
    background: var(--surface-raised);
    font: inherit;
}

.field[b-y28i1ucd9t]  textarea {
    min-height: 6rem;
    resize: vertical;
}

.field small[b-y28i1ucd9t] {
    color: var(--muted-strong);
    font-size: 0.78rem;
    line-height: 1.45;
}

.field[b-y28i1ucd9t]  .validation-message {
    color: var(--danger);
    font-size: 0.78rem;
    font-weight: 700;
}

.data-quality-notice[b-y28i1ucd9t] {
    margin-bottom: 1rem;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-left: 3px solid var(--warning);
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
    color: var(--muted-strong);
    background: var(--warning-soft);
    font-size: 0.82rem;
    line-height: 1.45;
}

.data-quality-notice strong[b-y28i1ucd9t] {
    color: var(--ink-950);
}

.check-row[b-y28i1ucd9t] {
    min-height: var(--tap-size);
    margin-bottom: 1rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--surface-soft);
}

.check-row[b-y28i1ucd9t]  input {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.check-row span[b-y28i1ucd9t] {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
}

.agreement-notice[b-y28i1ucd9t] {
    margin: -0.35rem 0 1rem;
    padding: 0.75rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-left: 3px solid var(--warning);
    color: var(--muted-strong);
    background: var(--warning-soft);
    font-size: 0.875rem;
}

.agreement-timeline[b-y28i1ucd9t] {
    margin-top: 1rem;
}

.timeline-note[b-y28i1ucd9t] {
    margin: 0.75rem 0 0;
    padding: 0.8rem 0.9rem;
    border-left: 3px solid var(--warning);
    color: var(--muted-strong);
    background: color-mix(in srgb, var(--warning) 8%, var(--surface));
    font-size: 0.875rem;
    line-height: 1.5;
}

.agreement-notice strong[b-y28i1ucd9t] {
    color: var(--warning);
}

.editor-actions[b-y28i1ucd9t] {
    position: sticky;
    z-index: 10;
    bottom: 0.75rem;
    width: fit-content;
    max-width: 100%;
    margin: 1rem 0 1.5rem auto;
    padding: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--surface-raised) 94%, transparent);
    box-shadow: var(--shadow);
    backdrop-filter: blur(0.7rem);
}

.editor-action-error[b-y28i1ucd9t] {
    width: 100%;
    margin: 0 0 0.2rem;
    padding: 0.75rem;
    border: 1px solid color-mix(in srgb, var(--danger) 35%, var(--line));
    border-radius: var(--radius-small);
    color: var(--danger);
    background: var(--danger-soft);
}

.lifecycle-panel[b-y28i1ucd9t] {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line-strong);
}

.lifecycle-panel h2[b-y28i1ucd9t] {
    margin: 0.15rem 0 0.25rem;
    font-size: 1.1rem;
}

.lifecycle-panel p:last-child[b-y28i1ucd9t] {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.82rem;
}

.status-confirmation[b-y28i1ucd9t] {
    min-width: min(100%, 27rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.status-confirmation label[b-y28i1ucd9t] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.status-confirmation > div[b-y28i1ucd9t] {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.loading[b-y28i1ucd9t],
.not-found[b-y28i1ucd9t] {
    padding: 4rem 1rem;
    text-align: center;
}

@media (max-width: 800px) {
    .editor-heading[b-y28i1ucd9t] {
        align-items: flex-start;
        flex-direction: column;
    }

    .editor-grid[b-y28i1ucd9t],
    .two-columns[b-y28i1ucd9t] {
        grid-template-columns: 1fr;
    }

    .editor-panel[b-y28i1ucd9t],
    .editor-panel:nth-child(odd)[b-y28i1ucd9t],
    .editor-panel:nth-last-child(-n + 2)[b-y28i1ucd9t] {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .editor-panel:last-child[b-y28i1ucd9t] {
        border-bottom: 0;
    }

    .lifecycle-panel[b-y28i1ucd9t] {
        align-items: stretch;
        flex-direction: column;
    }

    .status-confirmation[b-y28i1ucd9t] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .editor-heading p:last-child[b-y28i1ucd9t] {
        display: none;
    }

    .editor-grid[b-y28i1ucd9t] {
        border-radius: var(--radius-small);
    }

    .editor-panel[b-y28i1ucd9t] {
        padding: 1rem 0.85rem;
    }

    .editor-actions[b-y28i1ucd9t] {
        position: static;
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    }

    .editor-actions > *[b-y28i1ucd9t] {
        width: 100%;
    }

    .editor-action-error[b-y28i1ucd9t] {
        grid-column: 1 / -1;
    }

    .status-confirmation > div[b-y28i1ucd9t] {
        flex-direction: column;
    }

    .status-confirmation > div button[b-y28i1ucd9t] {
        width: 100%;
    }
}
/* /Components/Pages/DebtDetails.razor.rz.scp.css */
.detail-heading[b-b6f1v5wufn] {
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.back-link[b-b6f1v5wufn] {
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 750;
    text-decoration: none;
}

.detail-heading h1[b-b6f1v5wufn] { margin-bottom: 0.25rem; }

.detail-heading p:last-child[b-b6f1v5wufn] {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9375rem;
}

.heading-actions[b-b6f1v5wufn] {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.heading-more[b-b6f1v5wufn] {
    position: relative;
}

.heading-more > summary[b-b6f1v5wufn] {
    min-width: 4.5rem;
    min-height: 100%;
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid var(--line-strong);
    color: var(--muted-strong);
    background: var(--surface);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 800;
    list-style: none;
}

.heading-more > summary[b-b6f1v5wufn]::-webkit-details-marker { display: none; }
.heading-more > summary[b-b6f1v5wufn]::marker { content: ""; }

.heading-more > summary:hover[b-b6f1v5wufn],
.heading-more > summary:focus-visible[b-b6f1v5wufn] {
    color: var(--accent);
    background: var(--accent-soft);
}

.heading-more > div[b-b6f1v5wufn] {
    min-width: 15rem;
    padding: 0.35rem;
    position: absolute;
    z-index: 30;
    top: calc(100% + 0.35rem);
    right: 0;
    display: grid;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    box-shadow: 0 0.9rem 2rem color-mix(in srgb, var(--ink-950) 14%, transparent);
}

.heading-more > div a[b-b6f1v5wufn] {
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.heading-more > div a:hover[b-b6f1v5wufn],
.heading-more > div a:focus-visible[b-b6f1v5wufn] {
    color: var(--accent);
    background: var(--accent-soft);
}

.command-strip[b-b6f1v5wufn] {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: minmax(12rem, 0.9fr) minmax(18rem, 1.45fr) repeat(2, minmax(10rem, 0.8fr));
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.command-strip article[b-b6f1v5wufn] {
    min-width: 0;
    min-height: 6.5rem;
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--line);
}

.command-strip article:first-child[b-b6f1v5wufn] { border-left: 0; }

.command-strip .current[b-b6f1v5wufn] {
    color: #fff;
    background: var(--chrome);
}

.command-strip .next-command[b-b6f1v5wufn] {
    box-shadow: inset 0 -2px 0 var(--accent);
}

.command-strip span[b-b6f1v5wufn] {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.command-strip strong[b-b6f1v5wufn] {
    margin: 0.3rem 0 0.15rem;
    overflow: hidden;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.command-strip .next-command strong[b-b6f1v5wufn] {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.35;
    white-space: normal;
}

.command-strip small[b-b6f1v5wufn] {
    overflow: hidden;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.command-strip .current span[b-b6f1v5wufn],
.command-strip .current small[b-b6f1v5wufn] { color: rgba(226, 237, 245, 0.68); }
.command-strip .current strong[b-b6f1v5wufn] { color: #b6adff; }

.detail-alert[b-b6f1v5wufn] {
    margin-bottom: 0.6rem;
    padding: 0.8rem 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid color-mix(in srgb, var(--info) 35%, var(--line));
    color: var(--ink-900);
    background: var(--info-soft);
    text-decoration: none;
}

.detail-alert.critical[b-b6f1v5wufn] {
    border-color: color-mix(in srgb, var(--danger) 35%, var(--line));
    background: var(--danger-soft);
}

.detail-alert.important[b-b6f1v5wufn] {
    border-color: color-mix(in srgb, var(--warning) 40%, var(--line));
    background: var(--warning-soft);
}

.detail-alert > span[b-b6f1v5wufn] {
    width: 1.75rem;
    height: 1.75rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--info);
    font-weight: 900;
}

.detail-alert.critical > span[b-b6f1v5wufn] { background: var(--danger); }
.detail-alert.important > span[b-b6f1v5wufn] { background: var(--warning); }

.detail-alert > div[b-b6f1v5wufn] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.detail-alert strong[b-b6f1v5wufn] { font-size: 0.9375rem; }

.detail-alert small[b-b6f1v5wufn] {
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.4;
}

.detail-alert b[b-b6f1v5wufn] {
    margin-left: auto;
    color: var(--accent);
    font-size: 0.875rem;
    white-space: nowrap;
}

.more-alerts[b-b6f1v5wufn] {
    margin: -0.2rem 0 0.8rem;
    display: inline-block;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.detail-quality[b-b6f1v5wufn] {
    margin-bottom: 0.9rem;
    padding: 0.75rem 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-block: 1px solid var(--line);
    background: var(--surface-soft);
}

.detail-quality > div[b-b6f1v5wufn] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.detail-quality span[b-b6f1v5wufn] {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.detail-quality strong[b-b6f1v5wufn] {
    overflow: hidden;
    color: var(--ink-900);
    font-size: 0.875rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-quality small[b-b6f1v5wufn] {
    color: var(--muted);
    font-size: 0.875rem;
}

.detail-quality > a[b-b6f1v5wufn] {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 750;
}

.detail-grid[b-b6f1v5wufn] {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(21rem, 0.8fr);
    gap: 1rem;
}

.panel[b-b6f1v5wufn] {
    margin-bottom: 0.75rem;
    padding: 1rem;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.detail-grid .panel[b-b6f1v5wufn] { margin-bottom: 0; }

.panel-head[b-b6f1v5wufn] {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.panel-head .eyebrow[b-b6f1v5wufn],
.history-summary .eyebrow[b-b6f1v5wufn] { margin-bottom: 0.25rem; }

.panel-head h2[b-b6f1v5wufn] { margin: 0; }

dl[b-b6f1v5wufn] {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
}

dl > div[b-b6f1v5wufn] {
    min-width: 0;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--line);
}

dt[b-b6f1v5wufn] {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
}

dd[b-b6f1v5wufn] {
    margin: 0.18rem 0 0;
    overflow-wrap: anywhere;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 750;
}

.rib-state dd[b-b6f1v5wufn] { color: var(--danger); }

.safety-check[b-b6f1v5wufn] {
    min-width: 0;
    align-self: start;
    border-block: 1px solid color-mix(in srgb, var(--success) 38%, var(--line));
    background: var(--success-soft);
}

.safety-check > summary[b-b6f1v5wufn] {
    min-height: 5.4rem;
    padding: 0.9rem 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-content: center;
    gap: 0.2rem 1rem;
    cursor: pointer;
    list-style: none;
}

.safety-check > summary[b-b6f1v5wufn]::-webkit-details-marker { display: none; }
.safety-check > summary[b-b6f1v5wufn]::marker { content: ""; }

.safety-check > summary span[b-b6f1v5wufn] {
    color: var(--success);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.safety-check > summary strong[b-b6f1v5wufn] {
    grid-column: 1;
    color: var(--ink-900);
    font-size: 0.875rem;
    line-height: 1.45;
}

.safety-check > summary b[b-b6f1v5wufn] {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--success);
    font-size: 0.875rem;
}

.safety-check[open] > summary[b-b6f1v5wufn] { border-bottom: 1px solid var(--line); }

.safety-check[b-b6f1v5wufn]  .checklist-panel {
    padding: 0.9rem 1rem;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.safety-check[b-b6f1v5wufn]  .checklist-panel > div { display: none; }

.safety-check[b-b6f1v5wufn]  .checklist-panel ul {
    gap: 0.45rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.history-panel[b-b6f1v5wufn] {
    padding: 0;
}

.history-summary[b-b6f1v5wufn] {
    min-height: 4.9rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
}

.history-summary[b-b6f1v5wufn]::-webkit-details-marker { display: none; }
.history-summary[b-b6f1v5wufn]::marker { content: ""; }

.history-summary:hover[b-b6f1v5wufn],
.history-summary:focus-visible[b-b6f1v5wufn] { background: var(--surface-soft); }

.history-title[b-b6f1v5wufn] {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.history-heading[b-b6f1v5wufn] {
    color: var(--ink-950);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
}

.history-count[b-b6f1v5wufn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-strong);
    font-size: 0.875rem;
    white-space: nowrap;
}

.history-count > strong[b-b6f1v5wufn] {
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
}

.history-summary b[b-b6f1v5wufn] {
    min-width: 4rem;
    color: var(--accent);
    font-size: 0;
    text-align: right;
}

.history-summary b[b-b6f1v5wufn]::after {
    content: "Déplier";
    font-size: 0.875rem;
}

.history-panel[open] .history-summary b[b-b6f1v5wufn]::after { content: "Replier"; }

.history-body[b-b6f1v5wufn] {
    padding: 0 1rem 1rem;
    border-top: 1px solid var(--line);
}

.history-tools[b-b6f1v5wufn] {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.history-tools a[b-b6f1v5wufn],
.history-toggle[b-b6f1v5wufn] {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
}

.history-toggle[b-b6f1v5wufn] {
    min-height: var(--tap-size);
    padding: 0.45rem 0.65rem;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    cursor: pointer;
}

.history-toggle:hover[b-b6f1v5wufn],
.history-toggle:focus-visible[b-b6f1v5wufn] {
    color: var(--accent);
    background: var(--accent-soft);
}

.history-empty[b-b6f1v5wufn],
.empty-contacts[b-b6f1v5wufn] {
    margin: 1rem 0 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.table-wrap[b-b6f1v5wufn] { overflow-x: auto; }

table[b-b6f1v5wufn] {
    width: 100%;
    border-collapse: collapse;
}

th[b-b6f1v5wufn],
td[b-b6f1v5wufn] {
    padding: 0.75rem 0.6rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.875rem;
    text-align: left;
    white-space: nowrap;
}

th[b-b6f1v5wufn] {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.amount[b-b6f1v5wufn] {
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-weight: 850;
    font-variant-numeric: tabular-nums;
}

.cancelled-row[b-b6f1v5wufn] {
    opacity: 0.58;
    text-decoration: line-through;
}

.schedule-grid[b-b6f1v5wufn] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--line);
}

.schedule-grid article[b-b6f1v5wufn] {
    min-width: 0;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--line);
}

.schedule-grid article:first-child[b-b6f1v5wufn] { border-left: 0; }

.schedule-grid span[b-b6f1v5wufn],
.schedule-grid small[b-b6f1v5wufn] {
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.schedule-grid strong[b-b6f1v5wufn] {
    margin: 0.25rem 0;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-variant-numeric: tabular-nums;
}

.schedule-grid p[b-b6f1v5wufn] {
    margin: 0.6rem 0 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.4;
}

.contact-list[b-b6f1v5wufn] { display: grid; }

.contact-list article[b-b6f1v5wufn] {
    padding: 0.8rem 0;
    display: grid;
    grid-template-columns: 9rem minmax(10rem, 0.35fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--line);
}

.contact-list time[b-b6f1v5wufn],
.contact-list span[b-b6f1v5wufn] {
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.contact-list strong[b-b6f1v5wufn] { font-size: 0.875rem; }

.contact-list p[b-b6f1v5wufn] {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.4;
}

.not-found[b-b6f1v5wufn],
.loading[b-b6f1v5wufn] {
    padding: 5rem 1rem;
    color: var(--muted-strong);
    font-size: 0.9375rem;
    text-align: center;
}

@media (max-width: 1080px) {
    .command-strip[b-b6f1v5wufn] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .command-strip article:nth-child(3)[b-b6f1v5wufn] {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .command-strip article:nth-child(4)[b-b6f1v5wufn] { border-top: 1px solid var(--line); }

    .detail-grid[b-b6f1v5wufn] { grid-template-columns: 1fr; }
    .schedule-grid[b-b6f1v5wufn] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .schedule-grid article:nth-child(3)[b-b6f1v5wufn] { border-left: 0; }
    .schedule-grid article:nth-child(n + 3)[b-b6f1v5wufn] { border-top: 1px solid var(--line); }
}

@media (max-width: 700px) {
    .detail-heading[b-b6f1v5wufn] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .heading-actions[b-b6f1v5wufn] {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .heading-actions > .button-primary[b-b6f1v5wufn],
    .heading-actions > .button-secondary[b-b6f1v5wufn] {
        width: 100%;
        grid-column: 1 / -1;
    }

    .heading-more[b-b6f1v5wufn] {
        grid-column: 1 / -1;
    }

    .heading-more > summary[b-b6f1v5wufn] {
        width: 100%;
        min-height: 2.75rem;
    }

    .heading-more > div[b-b6f1v5wufn] {
        min-width: 0;
        margin-top: 0.35rem;
        position: static;
        box-shadow: none;
    }

    .command-strip[b-b6f1v5wufn] { grid-template-columns: 1fr; }

    .command-strip article[b-b6f1v5wufn],
    .command-strip article:nth-child(3)[b-b6f1v5wufn] {
        min-height: 5.6rem;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .command-strip article:first-child[b-b6f1v5wufn] { border-top: 0; }

    .command-strip strong[b-b6f1v5wufn],
    .command-strip small[b-b6f1v5wufn] {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .detail-alert[b-b6f1v5wufn] {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .detail-alert b[b-b6f1v5wufn] {
        width: 100%;
        margin-left: 2.5rem;
    }

    .detail-quality[b-b6f1v5wufn] {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-quality strong[b-b6f1v5wufn] {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    dl[b-b6f1v5wufn] { grid-template-columns: 1fr; }

    .safety-check > summary[b-b6f1v5wufn] {
        grid-template-columns: 1fr;
    }

    .safety-check > summary b[b-b6f1v5wufn] {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0.3rem;
    }

    .safety-check[b-b6f1v5wufn]  .checklist-panel ul { grid-template-columns: 1fr; }

    .history-summary[b-b6f1v5wufn] {
        align-items: flex-start;
        flex-direction: column;
    }

    .history-count[b-b6f1v5wufn] {
        width: 100%;
        justify-content: space-between;
    }

    .schedule-grid[b-b6f1v5wufn] { grid-template-columns: 1fr; }

    .schedule-grid article[b-b6f1v5wufn],
    .schedule-grid article:nth-child(3)[b-b6f1v5wufn] {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .schedule-grid article:first-child[b-b6f1v5wufn] { border-top: 0; }

    .contact-list article[b-b6f1v5wufn] {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}
/* /Components/Pages/EmailCenter.razor.rz.scp.css */
.email-heading[b-4zjz66i228] {
    padding-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.email-heading h1[b-4zjz66i228] {
    margin: 0.25rem 0 0.55rem;
    letter-spacing: -0.045em;
}

.email-heading > div p:last-child[b-4zjz66i228] {
    max-width: 58rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 1rem;
    line-height: 1.6;
}

.email-heading > span[b-4zjz66i228] {
    min-height: 2.25rem;
    padding: 0.45rem 0.65rem;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    border: 1px solid var(--success);
    color: var(--success);
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
}

.email-message[b-4zjz66i228] {
    margin: 1rem 0;
    padding: 0.9rem 1rem;
    border-left: 3px solid var(--accent);
    color: var(--accent-strong);
    background: var(--accent-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.email-message.success[b-4zjz66i228] {
    border-color: var(--success);
    color: var(--success);
    background: var(--success-soft);
}

.email-message.error[b-4zjz66i228] {
    border-color: var(--danger);
    color: var(--danger);
    background: var(--danger-soft);
}

.email-channel[b-4zjz66i228],
.email-composer[b-4zjz66i228],
.send-gate[b-4zjz66i228],
.email-history[b-4zjz66i228],
.email-safety[b-4zjz66i228] {
    margin-top: 1.25rem;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.email-channel[b-4zjz66i228] {
    display: grid;
    grid-template-columns: minmax(17rem, 0.72fr) minmax(25rem, 1.28fr);
}

.channel-status[b-4zjz66i228],
.optin-form[b-4zjz66i228],
.composer-controls[b-4zjz66i228],
.send-gate[b-4zjz66i228],
.email-history[b-4zjz66i228] {
    padding: clamp(1rem, 2.5vw, 1.5rem);
}

.channel-status[b-4zjz66i228] {
    border-right: 1px solid var(--line);
    background: var(--surface-soft);
}

.channel-status h2[b-4zjz66i228],
.composer-controls h2[b-4zjz66i228],
.send-gate h2[b-4zjz66i228],
.email-history h2[b-4zjz66i228] {
    margin: 0.25rem 0 0.75rem;
}

.channel-status small[b-4zjz66i228] {
    margin-top: 0.85rem;
    display: block;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.5;
}

.status-pill[b-4zjz66i228] {
    margin: 0.2rem 0.35rem 0.2rem 0;
    padding: 0.35rem 0.55rem;
    display: inline-block;
    border: 1px solid var(--line-strong);
    color: var(--muted-strong);
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
}

.status-pill.active[b-4zjz66i228] {
    border-color: var(--success);
    color: var(--success);
    background: var(--success-soft);
}

.optin-form[b-4zjz66i228] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 1rem;
}

.optin-form > label:not(.optin-toggle)[b-4zjz66i228],
.validate-strip label[b-4zjz66i228],
.send-gate > label[b-4zjz66i228] {
    min-width: 0;
    display: grid;
    gap: 0.45rem;
    color: var(--ink-900);
    font-size: 0.8125rem;
    font-weight: 750;
}

.email-channel input[b-4zjz66i228],
.validate-strip input[b-4zjz66i228],
.send-gate input[b-4zjz66i228] {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.6rem 0.7rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.25rem;
    color: var(--ink-950);
    background: var(--surface);
    font-size: 1rem;
}

.email-channel input:focus[b-4zjz66i228],
.validate-strip input:focus[b-4zjz66i228],
.send-gate input:focus[b-4zjz66i228] {
    border-color: var(--accent);
    outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent);
    outline-offset: 1px;
}

.optin-toggle[b-4zjz66i228] {
    grid-column: 1 / -1;
    min-height: 3.25rem;
    padding: 0.85rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}

.optin-toggle input[b-4zjz66i228],
.detail-choice input[b-4zjz66i228] {
    width: 1.25rem;
    height: 1.25rem;
    min-height: 1.25rem;
    margin-top: 0.1rem;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.optin-toggle span[b-4zjz66i228],
.detail-choice span[b-4zjz66i228] {
    display: grid;
    gap: 0.2rem;
}

.optin-toggle strong[b-4zjz66i228],
.detail-choice strong[b-4zjz66i228] {
    color: var(--ink-950);
    font-size: 0.875rem;
}

.optin-toggle small[b-4zjz66i228],
.detail-choice small[b-4zjz66i228] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.optin-form button[b-4zjz66i228] {
    min-height: 2.75rem;
    font-size: 0.875rem;
}

.composer-controls[b-4zjz66i228] {
    display: grid;
    grid-template-columns: minmax(18rem, 1fr) minmax(20rem, 1fr) auto;
    align-items: center;
    gap: 1.25rem;
    background: var(--surface-soft);
}

.composer-controls p[b-4zjz66i228] {
    margin-bottom: 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.detail-choice[b-4zjz66i228] {
    min-height: 2.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.composer-controls .button-primary[b-4zjz66i228] {
    min-width: 10.5rem;
    min-height: 2.75rem;
    font-size: 0.875rem;
}

.email-composer.disabled[b-4zjz66i228] {
    background: var(--surface-soft);
}

.email-preview-meta[b-4zjz66i228] {
    padding: 0.8rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
}

.email-preview-meta code[b-4zjz66i228] {
    margin-left: auto;
    color: var(--accent-strong);
    font-size: 0.8125rem;
}

.email-preview header[b-4zjz66i228] {
    padding: 1rem 1.25rem;
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.email-preview header span[b-4zjz66i228] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    font-weight: 750;
    text-transform: uppercase;
}

.email-preview header strong[b-4zjz66i228] {
    overflow-wrap: anywhere;
    color: var(--ink-950);
    font-size: 0.9375rem;
}

.email-preview pre[b-4zjz66i228] {
    margin: 0;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    overflow-wrap: anywhere;
    white-space: pre-wrap;
    color: var(--ink-950);
    font: 0.875rem/1.7 var(--font-mono);
}

.validate-strip[b-4zjz66i228] {
    padding: 1rem 1.25rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.7fr) auto;
    align-items: end;
    gap: 1rem;
    border-top: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
}

.validate-strip > div[b-4zjz66i228] {
    display: grid;
    gap: 0.25rem;
}

.validate-strip > div > strong[b-4zjz66i228] {
    color: var(--ink-950);
    font-size: 0.9375rem;
}

.validate-strip small[b-4zjz66i228],
.send-gate small[b-4zjz66i228] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.validate-strip button[b-4zjz66i228] {
    min-height: 2.75rem;
    min-width: 9rem;
    font-size: 0.875rem;
}

.send-gate[b-4zjz66i228] {
    display: grid;
    grid-template-columns: minmax(17rem, 1.1fr) minmax(16rem, 1fr) minmax(15rem, 0.75fr) auto;
    align-items: end;
    gap: 1rem;
    border-left: 4px solid var(--accent);
    background: color-mix(in srgb, var(--accent-soft) 45%, var(--surface));
}

.send-gate p[b-4zjz66i228] {
    margin-bottom: 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.5;
}

.send-gate dl[b-4zjz66i228] {
    margin: 0;
}

.send-gate dl div[b-4zjz66i228] {
    min-height: 2rem;
    padding: 0.4rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.send-gate dt[b-4zjz66i228],
.send-gate dd[b-4zjz66i228] {
    font-size: 0.8125rem;
}

.send-gate dt[b-4zjz66i228] {
    color: var(--muted-strong);
}

.send-gate dd[b-4zjz66i228] {
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--ink-950);
    text-align: right;
}

.send-gate .button-primary[b-4zjz66i228] {
    min-width: 10rem;
    min-height: 2.75rem;
    font-size: 0.875rem;
}

.send-blocked[b-4zjz66i228] {
    grid-column: 3 / -1;
    color: var(--danger) !important;
}

.email-history > div:first-child[b-4zjz66i228] {
    margin-bottom: 0.75rem;
}

.email-history article[b-4zjz66i228] {
    min-height: 4.5rem;
    padding: 0.85rem 0;
    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
}

.email-history article > div[b-4zjz66i228] {
    min-width: 0;
    display: grid;
    gap: 0.25rem;
}

.email-history article strong[b-4zjz66i228] {
    overflow-wrap: anywhere;
    font-size: 0.9375rem;
}

.email-history article small[b-4zjz66i228],
.email-history article em[b-4zjz66i228],
.email-history > p[b-4zjz66i228] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.email-history article button[b-4zjz66i228] {
    min-height: 2.75rem;
    font-size: 0.875rem;
}

.history-status[b-4zjz66i228] {
    align-self: center;
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--line-strong);
    color: var(--muted-strong);
    font-size: 0.8125rem;
    font-weight: 800;
    text-align: center;
}

.history-status.envoyee[b-4zjz66i228] {
    border-color: var(--success);
    color: var(--success);
    background: var(--success-soft);
}

.history-status.echec[b-4zjz66i228] {
    border-color: var(--danger);
    color: var(--danger);
    background: var(--danger-soft);
}

.email-safety > summary[b-4zjz66i228] {
    min-height: 3.5rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    list-style: none;
    cursor: pointer;
}

.email-safety > summary[b-4zjz66i228]::-webkit-details-marker {
    display: none;
}

.email-safety > summary[b-4zjz66i228]::after {
    margin-left: auto;
    color: var(--muted);
    content: "+";
    font-size: 1.35rem;
}

.email-safety[open] > summary[b-4zjz66i228]::after {
    content: "−";
}

.email-safety > summary > span[b-4zjz66i228] {
    display: flex;
    flex-direction: column;
}

.email-safety > summary strong[b-4zjz66i228] {
    color: var(--ink-950);
    font-size: 0.9375rem;
}

.email-safety > summary small[b-4zjz66i228] {
    margin-top: 0.15rem;
    color: var(--muted);
    font-size: 0.8125rem;
}

.email-safety > summary:focus-visible[b-4zjz66i228] {
    outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
    outline-offset: -3px;
}

.email-safety > div[b-4zjz66i228] {
    padding: 0 1rem 1rem;
}

.email-safety p[b-4zjz66i228] {
    max-width: 72rem;
    margin: 0;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .composer-controls[b-4zjz66i228],
    .validate-strip[b-4zjz66i228],
    .send-gate[b-4zjz66i228] {
        grid-template-columns: 1fr 1fr;
    }

    .composer-controls > div:first-child[b-4zjz66i228],
    .validate-strip > div:first-child[b-4zjz66i228],
    .send-gate > div:first-child[b-4zjz66i228] {
        grid-column: 1 / -1;
    }

    .send-blocked[b-4zjz66i228] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .email-heading[b-4zjz66i228] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .email-channel[b-4zjz66i228],
    .optin-form[b-4zjz66i228],
    .composer-controls[b-4zjz66i228],
    .validate-strip[b-4zjz66i228],
    .send-gate[b-4zjz66i228] {
        grid-template-columns: 1fr;
    }

    .channel-status[b-4zjz66i228] {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .optin-form > *[b-4zjz66i228],
    .composer-controls > *[b-4zjz66i228],
    .validate-strip > *[b-4zjz66i228],
    .send-gate > *[b-4zjz66i228],
    .send-blocked[b-4zjz66i228] {
        grid-column: 1 !important;
    }

    .email-preview-meta[b-4zjz66i228] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .email-preview-meta code[b-4zjz66i228] {
        margin-left: 0;
    }

    .email-history article[b-4zjz66i228] {
        grid-template-columns: 1fr;
    }

    .history-status[b-4zjz66i228] {
        width: fit-content;
    }

    .email-channel button[b-4zjz66i228],
    .composer-controls button[b-4zjz66i228],
    .validate-strip button[b-4zjz66i228],
    .send-gate button[b-4zjz66i228],
    .email-history article button[b-4zjz66i228] {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .email-heading > span[b-4zjz66i228] {
        width: 100%;
        justify-content: center;
    }

    .channel-status[b-4zjz66i228],
    .optin-form[b-4zjz66i228],
    .composer-controls[b-4zjz66i228],
    .send-gate[b-4zjz66i228],
    .email-history[b-4zjz66i228],
    .validate-strip[b-4zjz66i228] {
        padding-inline: 0.8rem;
    }

    .email-preview header[b-4zjz66i228] {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .email-preview-meta code[b-4zjz66i228],
    .send-gate code[b-4zjz66i228] {
        overflow-wrap: anywhere;
    }
}
/* /Components/Pages/EvidenceVault.razor.rz.scp.css */
.vault-heading[b-l5i5913dkr] {
    padding-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.vault-heading h1[b-l5i5913dkr] { margin-bottom: 0.3rem; }

.vault-heading p:last-child[b-l5i5913dkr] {
    max-width: 62rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.vault-heading button[b-l5i5913dkr] { min-height: 2.75rem; flex: 0 0 auto; }

.vault-message[b-l5i5913dkr] {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--accent);
    color: var(--ink-900);
    background: var(--accent-soft);
    font-size: 0.875rem;
}

.vault-message.success[b-l5i5913dkr] {
    border-color: var(--success);
    background: var(--success-soft);
}

.vault-message.error[b-l5i5913dkr] {
    border-color: var(--danger);
    background: var(--danger-soft);
}

.vault-status[b-l5i5913dkr],
.vault-workbench[b-l5i5913dkr],
.integrity-report[b-l5i5913dkr],
.vault-register[b-l5i5913dkr],
.vault-safety[b-l5i5913dkr] {
    margin-top: 1rem;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.vault-status[b-l5i5913dkr] {
    display: grid;
    grid-template-columns: minmax(18rem, 1.1fr) minmax(30rem, 1.4fr);
    align-items: stretch;
}

.vault-status > div:first-child[b-l5i5913dkr] {
    min-width: 0;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-right: 1px solid var(--line);
}

.vault-status > div:first-child div[b-l5i5913dkr] {
    min-width: 0;
    display: grid;
    gap: 0.2rem;
}

.vault-status > div:first-child strong[b-l5i5913dkr] { font-size: 1rem; }

.vault-status small[b-l5i5913dkr] {
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.4;
}

.status-light[b-l5i5913dkr] {
    width: 0.75rem;
    height: 0.75rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--danger);
    box-shadow: 0 0 0 4px var(--danger-soft);
}

.status-light.ready[b-l5i5913dkr] {
    background: var(--success);
    box-shadow: 0 0 0 4px var(--success-soft);
}

.vault-status dl[b-l5i5913dkr] {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vault-status dl div[b-l5i5913dkr] {
    min-width: 0;
    padding: 0.8rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-left: 1px solid var(--line);
}

.vault-status dl div:first-child[b-l5i5913dkr] { border-left: 0; }

.vault-status dt[b-l5i5913dkr],
.document-list dt[b-l5i5913dkr] {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.vault-status dd[b-l5i5913dkr],
.document-list dd[b-l5i5913dkr] {
    margin: 0.2rem 0 0;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 750;
}

.upload-heading[b-l5i5913dkr],
.vault-register > header[b-l5i5913dkr] {
    min-height: 5rem;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.upload-heading h2[b-l5i5913dkr],
.vault-register h2[b-l5i5913dkr] { margin: 0.15rem 0 0; }

.upload-heading > span[b-l5i5913dkr],
.vault-register > header > span[b-l5i5913dkr] {
    color: var(--muted-strong);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.upload-grid[b-l5i5913dkr] {
    padding: 0 1.1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.upload-grid label[b-l5i5913dkr] {
    min-width: 0;
    min-height: 6.5rem;
    padding: 0.85rem 0;
    display: grid;
    align-content: center;
    gap: 0.4rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.875rem;
    font-weight: 750;
}

.upload-grid label:nth-child(odd)[b-l5i5913dkr] {
    padding-right: 1rem;
    border-right: 1px solid var(--line);
}

.upload-grid label:nth-child(even)[b-l5i5913dkr] { padding-left: 1rem; }

.upload-grid select[b-l5i5913dkr],
.upload-grid input[b-l5i5913dkr] {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    color: var(--ink);
    background: var(--paper);
    font-size: 0.9375rem;
}

.file-picker input[type="file"][b-l5i5913dkr] { padding: 0.55rem; }

.file-picker small[b-l5i5913dkr] {
    overflow-wrap: anywhere;
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.upload-contract[b-l5i5913dkr] {
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--surface-soft);
}

.upload-contract > div[b-l5i5913dkr] {
    display: grid;
    gap: 0.2rem;
}

.upload-contract strong[b-l5i5913dkr] { font-size: 0.9375rem; }

.upload-contract small[b-l5i5913dkr] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.upload-contract button[b-l5i5913dkr] { min-height: 2.75rem; flex: 0 0 auto; }

.integrity-report[b-l5i5913dkr] {
    padding: 0.9rem 1.1rem;
    border-left: 4px solid var(--success);
    background: var(--success-soft);
}

.integrity-report.unhealthy[b-l5i5913dkr] {
    border-left-color: var(--danger);
    background: var(--danger-soft);
}

.integrity-report > div[b-l5i5913dkr] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.integrity-report strong[b-l5i5913dkr] { font-size: 0.9375rem; }

.integrity-report small[b-l5i5913dkr] {
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.integrity-report p[b-l5i5913dkr] {
    margin: 0.7rem 0 0;
    color: var(--danger);
    font-size: 0.875rem;
}

.empty-vault[b-l5i5913dkr] {
    margin: 0;
    padding: 2rem 1.1rem;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.document-list article[b-l5i5913dkr] {
    min-width: 0;
    min-height: 5.6rem;
    padding: 0.85rem 1.1rem;
    display: grid;
    grid-template-columns: 3.5rem minmax(12rem, 1fr) minmax(10rem, 0.65fr) auto;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
}

.document-list article:first-child[b-l5i5913dkr] { border-top: 0; }

.document-type[b-l5i5913dkr] {
    height: 2.75rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 800;
}

.document-main[b-l5i5913dkr] {
    min-width: 0;
    display: grid;
    gap: 0.2rem;
}

.document-main strong[b-l5i5913dkr] {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 0.9375rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.document-main small[b-l5i5913dkr] {
    overflow: hidden;
    color: var(--muted-strong);
    font-size: 0.875rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.document-meta[b-l5i5913dkr] { min-width: 0; }

.document-meta > summary[b-l5i5913dkr] {
    min-height: 2.75rem;
    padding: 0.55rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line-strong);
    color: var(--muted-strong);
    background: var(--surface);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 750;
    list-style: none;
}

.document-meta > summary[b-l5i5913dkr]::-webkit-details-marker { display: none; }
.document-meta > summary[b-l5i5913dkr]::marker { content: ""; }
.document-meta > summary[b-l5i5913dkr]::after { content: "+"; color: var(--accent); font-size: 1rem; }
.document-meta[open] > summary[b-l5i5913dkr]::after { content: "−"; }

.document-meta dl[b-l5i5913dkr] {
    margin: 0;
    padding: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    border: 1px solid var(--line);
    border-top: 0;
    background: var(--surface-soft);
}

.document-list article > a[b-l5i5913dkr] {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.vault-safety[b-l5i5913dkr] { background: transparent; }

.vault-safety > summary[b-l5i5913dkr] {
    min-height: 4.8rem;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
}

.vault-safety > summary[b-l5i5913dkr]::-webkit-details-marker { display: none; }
.vault-safety > summary[b-l5i5913dkr]::marker { content: ""; }

.vault-safety > summary > span[b-l5i5913dkr] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.safety-heading[b-l5i5913dkr] {
    color: var(--ink-950);
    font-size: 1.05rem;
    font-weight: 800;
}

.vault-safety > summary > strong[b-l5i5913dkr] {
    color: var(--accent);
    font-size: 0.875rem;
    white-space: nowrap;
}

.vault-safety > p[b-l5i5913dkr] {
    max-width: 74rem;
    margin: 0;
    padding: 1rem 1.1rem;
    border-top: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .vault-status[b-l5i5913dkr] { grid-template-columns: 1fr; }

    .vault-status > div:first-child[b-l5i5913dkr] {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .document-list article[b-l5i5913dkr] {
        grid-template-columns: 3.5rem minmax(0, 1fr) auto;
    }

    .document-meta[b-l5i5913dkr] {
        grid-column: 2 / -1;
        grid-row: 2;
    }
}

@media (max-width: 700px) {
    .vault-heading[b-l5i5913dkr],
    .upload-heading[b-l5i5913dkr],
    .vault-register > header[b-l5i5913dkr],
    .upload-contract[b-l5i5913dkr],
    .integrity-report > div[b-l5i5913dkr],
    .vault-safety > summary[b-l5i5913dkr] {
        align-items: flex-start;
        flex-direction: column;
    }

    .vault-heading button[b-l5i5913dkr],
    .upload-contract button[b-l5i5913dkr] { width: 100%; }

    .vault-status dl[b-l5i5913dkr] { grid-template-columns: 1fr 1fr; }

    .vault-status dl div[b-l5i5913dkr] {
        padding: 0.7rem;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .vault-status dl div:nth-child(even)[b-l5i5913dkr] { border-left: 1px solid var(--line); }

    .upload-grid[b-l5i5913dkr] { grid-template-columns: 1fr; }

    .upload-grid label[b-l5i5913dkr],
    .upload-grid label:nth-child(odd)[b-l5i5913dkr],
    .upload-grid label:nth-child(even)[b-l5i5913dkr] {
        min-height: 0;
        padding: 0.85rem 0;
        border-right: 0;
    }

    .document-list article[b-l5i5913dkr] {
        grid-template-columns: 3.25rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .document-meta[b-l5i5913dkr],
    .document-list article > a[b-l5i5913dkr] {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .document-list article > a[b-l5i5913dkr] { width: 100%; }

    .vault-safety > summary > strong[b-l5i5913dkr] { white-space: normal; }
}

@media (max-width: 430px) {
    .vault-status dl[b-l5i5913dkr] { grid-template-columns: 1fr; }
    .vault-status dl div:nth-child(even)[b-l5i5913dkr] { border-left: 0; }

    .document-main strong[b-l5i5913dkr],
    .document-main small[b-l5i5913dkr] {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .document-meta dl[b-l5i5913dkr] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.loading-console[b-n66dyr3iz8] {
    min-height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted-strong);
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.loading-console span[b-n66dyr3iz8] {
    width: 0.75rem;
    height: 0.75rem;
    border: 2px solid var(--line);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin-b-n66dyr3iz8 650ms linear infinite;
}

@keyframes spin-b-n66dyr3iz8 {
    to { transform: rotate(360deg); }
}

.cockpit-heading[b-n66dyr3iz8] {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.cockpit-heading h1[b-n66dyr3iz8] {
    margin-bottom: 0.3rem;
    text-transform: capitalize;
}

.cockpit-heading p:last-child[b-n66dyr3iz8] {
    max-width: 50rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.month-switcher[b-n66dyr3iz8] {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
    border: 1px solid var(--line-strong);
    background: var(--surface);
}

.month-switcher a[b-n66dyr3iz8] {
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: grid;
    place-items: center;
    border-left: 1px solid var(--line);
    color: var(--ink-900);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.month-switcher a:first-child[b-n66dyr3iz8] {
    border-left: 0;
}

.month-switcher .month-current[b-n66dyr3iz8] {
    min-width: 8rem;
    padding-inline: 0.8rem;
}

.month-switcher a:hover[b-n66dyr3iz8],
.month-switcher a:focus-visible[b-n66dyr3iz8] {
    color: var(--accent);
    background: var(--accent-soft);
}

.cockpit-overview[b-n66dyr3iz8] {
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.65fr);
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.action-queue[b-n66dyr3iz8] {
    min-width: 0;
    border-right: 1px solid var(--line-strong);
}

.action-queue > header[b-n66dyr3iz8] {
    min-height: 5.4rem;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.action-queue h2[b-n66dyr3iz8],
.action-queue .eyebrow[b-n66dyr3iz8] {
    margin: 0;
}

.action-queue h2[b-n66dyr3iz8] {
    margin-top: 0.2rem;
}

.action-queue > header > a[b-n66dyr3iz8] {
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 700;
}

.action-list[b-n66dyr3iz8] {
    display: grid;
}

.action-list article[b-n66dyr3iz8] {
    min-width: 0;
    min-height: 5rem;
    padding: 0.85rem 1.15rem;
    display: grid;
    grid-template-columns: 7.25rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
    box-shadow: inset 3px 0 0 var(--warning);
}

.action-list article:first-child[b-n66dyr3iz8] {
    border-top: 0;
}

.action-list article.pay[b-n66dyr3iz8] {
    box-shadow: inset 3px 0 0 var(--danger);
}

.action-list article.confirm[b-n66dyr3iz8] {
    box-shadow: inset 3px 0 0 var(--signal);
}

.action-kind[b-n66dyr3iz8] {
    color: var(--warning);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.pay .action-kind[b-n66dyr3iz8] { color: var(--danger); }
.confirm .action-kind[b-n66dyr3iz8] { color: var(--signal); }

.action-list strong[b-n66dyr3iz8] {
    color: var(--ink-950);
    font-size: 1rem;
}

.action-list p[b-n66dyr3iz8] {
    margin: 0.15rem 0 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.45;
}

.action-command[b-n66dyr3iz8] {
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
}

.action-command:hover[b-n66dyr3iz8],
.action-command:focus-visible[b-n66dyr3iz8] {
    color: var(--paper);
    background: var(--accent);
}

.action-empty[b-n66dyr3iz8] {
    min-height: 7.5rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.action-empty-mark[b-n66dyr3iz8] {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--success);
    background: var(--success-soft);
    font-weight: 900;
}

.action-empty > div[b-n66dyr3iz8] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.action-empty strong[b-n66dyr3iz8] {
    color: var(--success);
    font-size: 1rem;
}

.action-empty > div > span[b-n66dyr3iz8] {
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.summary-rail[b-n66dyr3iz8] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.summary-focus[b-n66dyr3iz8],
.portfolio-total[b-n66dyr3iz8] {
    padding: 1rem 1.15rem;
    display: flex;
    flex-direction: column;
}

.summary-focus[b-n66dyr3iz8] {
    border-bottom: 1px solid var(--line);
    box-shadow: inset 0 -2px 0 var(--warning);
}

.summary-rail span[b-n66dyr3iz8],
.summary-rail dt[b-n66dyr3iz8] {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.summary-focus strong[b-n66dyr3iz8],
.portfolio-total strong[b-n66dyr3iz8] {
    margin: 0.25rem 0 0.1rem;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

.summary-rail small[b-n66dyr3iz8] {
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.4;
}

.summary-rail dl[b-n66dyr3iz8] {
    margin: 0;
    display: grid;
}

.summary-rail dl > div[b-n66dyr3iz8] {
    min-height: 2.9rem;
    padding: 0.55rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.summary-rail dd[b-n66dyr3iz8] {
    margin: 0;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.portfolio-total[b-n66dyr3iz8] {
    margin-top: auto;
    background: var(--surface-soft);
}

.portfolio-total strong[b-n66dyr3iz8] {
    font-size: 1.1rem;
}

.agreement-watchlist[b-n66dyr3iz8] {
    margin-bottom: 1.5rem;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
    box-shadow: inset 3px 0 0 var(--warning);
}

.agreement-watchlist > header[b-n66dyr3iz8] {
    min-height: 4.2rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.agreement-watchlist .eyebrow[b-n66dyr3iz8],
.agreement-watchlist h2[b-n66dyr3iz8] {
    margin: 0;
}

.agreement-watchlist h2[b-n66dyr3iz8] {
    margin-top: 0.15rem;
    font-size: 1rem;
}

.agreement-watchlist > header > a[b-n66dyr3iz8] {
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 700;
}

.agreement-action-list[b-n66dyr3iz8] {
    display: grid;
}

.agreement-action-list article[b-n66dyr3iz8] {
    min-width: 0;
    min-height: 3.9rem;
    padding: 0.65rem 1rem;
    display: grid;
    grid-template-columns: minmax(12rem, 0.75fr) minmax(0, 1.5fr) auto;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
}

.agreement-action-list article:first-child[b-n66dyr3iz8] {
    border-top: 0;
}

.agreement-identity[b-n66dyr3iz8] {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.2rem 0.55rem;
}

.agreement-identity a[b-n66dyr3iz8] {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 0.9375rem;
    font-weight: 800;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agreement-identity span[b-n66dyr3iz8] {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 750;
}

.agreement-next-action[b-n66dyr3iz8] {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agreement-next-action span[b-n66dyr3iz8] {
    margin-right: 0.55rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agreement-next-action strong[b-n66dyr3iz8] {
    color: inherit;
    font-size: inherit;
    font-weight: 500;
}

.agreement-command[b-n66dyr3iz8] {
    min-height: 2.5rem;
    padding: 0.55rem 0.75rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    color: var(--ink-900);
    font-size: 0.8125rem;
    font-weight: 800;
    text-decoration: none;
}

.agreement-command:hover[b-n66dyr3iz8],
.agreement-command:focus-visible[b-n66dyr3iz8] {
    color: var(--accent);
    background: var(--accent-soft);
}

.creditor-console[b-n66dyr3iz8] {
    border-top: 1px solid var(--line-strong);
}

.creditor-console > header[b-n66dyr3iz8] {
    padding: 1rem 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.creditor-console > header .eyebrow[b-n66dyr3iz8] { margin-bottom: 0.2rem; }
.creditor-console > header h2[b-n66dyr3iz8] { margin: 0; }

.console-actions[b-n66dyr3iz8] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.creditor-list[b-n66dyr3iz8] {
    display: grid;
    border-block: 1px solid var(--line-strong);
    background: var(--surface);
}

.creditor-list-header[b-n66dyr3iz8],
.creditor-row[b-n66dyr3iz8] {
    display: grid;
    grid-template-columns:
        minmax(13rem, 1.2fr)
        minmax(11rem, 1fr)
        minmax(10rem, 0.78fr)
        minmax(7.5rem, 0.55fr)
        minmax(9.5rem, 0.65fr);
    align-items: center;
    column-gap: 1rem;
}

.creditor-list-header[b-n66dyr3iz8] {
    min-height: 2.65rem;
    padding: 0.5rem 0.9rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
    background: var(--surface-soft);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.creditor-list-header span:last-child[b-n66dyr3iz8] { text-align: right; }

.creditor-row[b-n66dyr3iz8] {
    min-width: 0;
    min-height: 6.25rem;
    padding: 0.9rem;
    border-top: 1px solid var(--line);
}

.creditor-list-header + .creditor-row[b-n66dyr3iz8] { border-top: 0; }

.creditor-row:hover[b-n66dyr3iz8] {
    background: color-mix(in srgb, var(--accent) 3%, var(--surface));
}

.creditor-identity[b-n66dyr3iz8] {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.state-signal[b-n66dyr3iz8] {
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.45rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--warning);
}

.late .state-signal[b-n66dyr3iz8] { background: var(--danger); }
.treated .state-signal[b-n66dyr3iz8] { background: var(--success); }
.unplanned .state-signal[b-n66dyr3iz8] { background: var(--muted); }
.upcoming .state-signal[b-n66dyr3iz8] { background: var(--muted); }

.watch .state-signal[b-n66dyr3iz8],
.creditor-row.confirm .state-signal[b-n66dyr3iz8] {
    background: var(--signal);
    box-shadow: 0 0 0 0.22rem color-mix(in srgb, var(--signal) 16%, transparent);
}

.creditor-identity > div[b-n66dyr3iz8] {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 0.15rem 0.55rem;
}

.creditor-identity a[b-n66dyr3iz8] {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.creditor-reference[b-n66dyr3iz8] {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 750;
}

.creditor-identity .agreement-badge[b-n66dyr3iz8] {
    min-height: 1.4rem;
    padding: 0.2rem 0.4rem;
    grid-column: 1 / -1;
    font-size: 0.6875rem;
}

.creditor-identity small[b-n66dyr3iz8] {
    grid-column: span 2;
    overflow: hidden;
    color: var(--muted-strong);
    font-size: 0.875rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.creditor-state[b-n66dyr3iz8],
.creditor-amount[b-n66dyr3iz8] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.state-label[b-n66dyr3iz8] {
    width: fit-content;
    padding: 0.2rem 0.4rem;
    color: var(--warning);
    background: var(--warning-soft);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 750;
    text-transform: uppercase;
}

.late .state-label[b-n66dyr3iz8] {
    color: var(--danger);
    background: var(--danger-soft);
}

.treated .state-label[b-n66dyr3iz8] {
    color: var(--success);
    background: var(--success-soft);
}

.watch .state-label[b-n66dyr3iz8],
.creditor-row.confirm .state-label[b-n66dyr3iz8] {
    color: var(--signal);
    background: color-mix(in srgb, var(--signal) 12%, var(--surface));
}

.unplanned .state-label[b-n66dyr3iz8],
.upcoming .state-label[b-n66dyr3iz8] {
    color: var(--muted-strong);
    background: var(--surface-soft);
}

.creditor-state small[b-n66dyr3iz8] {
    overflow: hidden;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.creditor-amount span[b-n66dyr3iz8] {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.creditor-amount strong[b-n66dyr3iz8] {
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.creditor-amount strong small[b-n66dyr3iz8] {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.creditor-amount em[b-n66dyr3iz8] {
    color: var(--signal);
    font-size: 0.875rem;
    font-style: normal;
}

.creditor-quick-actions[b-n66dyr3iz8] {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
}

.payment-command[b-n66dyr3iz8],
.creditor-more > summary[b-n66dyr3iz8] {
    min-height: 2.75rem;
    display: grid;
    place-items: center;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
}

.payment-command[b-n66dyr3iz8] {
    min-width: 5.5rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.payment-command:hover[b-n66dyr3iz8],
.payment-command:focus-visible[b-n66dyr3iz8] {
    color: var(--paper);
    background: var(--accent);
}

.creditor-more[b-n66dyr3iz8] {
    position: relative;
}

.creditor-more > summary[b-n66dyr3iz8] {
    min-width: 2.75rem;
    padding: 0.5rem;
    border: 1px solid var(--line-strong);
    color: var(--muted-strong);
    cursor: pointer;
    list-style: none;
}

.creditor-more > summary[b-n66dyr3iz8]::-webkit-details-marker { display: none; }
.creditor-more > summary[b-n66dyr3iz8]::marker { content: ""; }
.creditor-more > summary:hover[b-n66dyr3iz8],
.creditor-more > summary:focus-visible[b-n66dyr3iz8] { color: var(--accent); background: var(--accent-soft); }
.more-label[b-n66dyr3iz8] { display: none; }

.creditor-more-menu[b-n66dyr3iz8] {
    min-width: 13rem;
    padding: 0.35rem;
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.35rem);
    right: 0;
    display: grid;
    border: 1px solid var(--line-strong);
    background: var(--surface);
    box-shadow: 0 0.9rem 2rem color-mix(in srgb, var(--ink-950) 14%, transparent);
}

.creditor-more-menu a[b-n66dyr3iz8] {
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.creditor-more-menu a:hover[b-n66dyr3iz8],
.creditor-more-menu a:focus-visible[b-n66dyr3iz8] {
    color: var(--accent);
    background: var(--accent-soft);
}

@media (max-width: 1180px) {
    .cockpit-overview[b-n66dyr3iz8] {
        grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.5fr);
    }

    .creditor-list-header[b-n66dyr3iz8] { display: none; }

    .creditor-row[b-n66dyr3iz8] {
        grid-template-columns: minmax(12rem, 1.15fr) minmax(10rem, 1fr) minmax(9rem, 0.8fr) minmax(7rem, 0.6fr);
        row-gap: 0.75rem;
    }

    .creditor-list-header + .creditor-row[b-n66dyr3iz8] { border-top: 0; }

    .creditor-quick-actions[b-n66dyr3iz8] {
        grid-column: 1 / -1;
        padding-top: 0.65rem;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 860px) {
    .cockpit-heading[b-n66dyr3iz8],
    .creditor-console > header[b-n66dyr3iz8] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.9rem;
    }

    .cockpit-overview[b-n66dyr3iz8] {
        grid-template-columns: 1fr;
    }

    .action-queue[b-n66dyr3iz8] { border-right: 0; }

    .summary-rail[b-n66dyr3iz8] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid var(--line-strong);
    }

    .summary-rail dl[b-n66dyr3iz8] {
        grid-column: span 2;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-bottom: 1px solid var(--line);
    }

    .summary-rail dl > div[b-n66dyr3iz8] {
        align-items: flex-start;
        flex-direction: column;
        border-bottom: 0;
        border-left: 1px solid var(--line);
    }

    .summary-rail dl > div:first-child[b-n66dyr3iz8] { border-left: 0; }

    .portfolio-total[b-n66dyr3iz8] {
        margin-top: 0;
        border-left: 1px solid var(--line);
    }

    .creditor-row[b-n66dyr3iz8] {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .creditor-identity[b-n66dyr3iz8],
    .creditor-state[b-n66dyr3iz8],
    .creditor-quick-actions[b-n66dyr3iz8] { grid-column: span 2; }
}

@media (max-width: 560px) {
    .cockpit-heading[b-n66dyr3iz8] { margin-bottom: 1rem; }

    .cockpit-heading p:last-child[b-n66dyr3iz8] { font-size: 0.875rem; }

    .month-switcher[b-n66dyr3iz8],
    .console-actions[b-n66dyr3iz8] { width: 100%; }

    .month-switcher .month-current[b-n66dyr3iz8] { flex: 1; }

    .console-actions[b-n66dyr3iz8] {
        display: grid;
        grid-template-columns: 1fr;
    }

    .action-queue > header[b-n66dyr3iz8] {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
    }

    .action-list article[b-n66dyr3iz8] {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .action-command[b-n66dyr3iz8] { width: 100%; margin-top: 0.3rem; }

    .action-empty[b-n66dyr3iz8] { align-items: flex-start; }

    .agreement-watchlist > header[b-n66dyr3iz8] {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .agreement-action-list article[b-n66dyr3iz8] {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .agreement-identity a[b-n66dyr3iz8],
    .agreement-next-action[b-n66dyr3iz8] {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .agreement-next-action span[b-n66dyr3iz8] {
        display: block;
        margin: 0 0 0.1rem;
    }

    .agreement-command[b-n66dyr3iz8] { width: 100%; }

    .summary-rail[b-n66dyr3iz8] { grid-template-columns: 1fr; }
    .summary-rail dl[b-n66dyr3iz8] { grid-column: auto; }
    .portfolio-total[b-n66dyr3iz8] { border-left: 0; border-top: 1px solid var(--line); }

    .creditor-row[b-n66dyr3iz8] {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 1rem 0.85rem;
        gap: 0.8rem;
    }

    .creditor-identity[b-n66dyr3iz8],
    .creditor-state[b-n66dyr3iz8],
    .creditor-quick-actions[b-n66dyr3iz8] { grid-column: auto; }

    .creditor-identity a[b-n66dyr3iz8],
    .creditor-identity small[b-n66dyr3iz8],
    .creditor-state small[b-n66dyr3iz8] {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .creditor-progress[b-n66dyr3iz8],
    .creditor-balance[b-n66dyr3iz8] {
        padding-top: 0.7rem;
        border-top: 1px solid var(--line);
    }

    .creditor-quick-actions[b-n66dyr3iz8] {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        justify-content: stretch;
    }

    .payment-command[b-n66dyr3iz8] { width: 100%; }

    .creditor-more > summary[b-n66dyr3iz8] {
        min-width: 5.2rem;
        display: flex;
        gap: 0.4rem;
    }

    .more-label[b-n66dyr3iz8] { display: inline; }

    .creditor-more-menu[b-n66dyr3iz8] {
        min-width: 0;
        width: 100%;
        margin-top: 0.4rem;
        padding: 0.25rem 0;
        position: static;
        grid-column: 1 / -1;
        border-inline: 0;
        box-shadow: none;
    }

    .creditor-more[open][b-n66dyr3iz8] {
        grid-column: 1 / -1;
    }

    .creditor-more[open] > summary[b-n66dyr3iz8] {
        width: 100%;
    }
}
/* /Components/Pages/Horizon.razor.rz.scp.css */
.horizon-heading[b-jiqhvio782] {
    padding: 1rem 0 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.horizon-heading h1[b-jiqhvio782] {
    margin: 0.15rem 0 0.35rem;
    font-size: clamp(2.35rem, 4.5vw, 4rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.horizon-heading h1 span[b-jiqhvio782] {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.56em;
    letter-spacing: -0.03em;
}

.horizon-heading > div:first-child > p:last-child[b-jiqhvio782] {
    max-width: 48rem;
    margin: 0;
    color: var(--muted-strong);
}

.horizon-actions[b-jiqhvio782] {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
}

.horizon-navigation[b-jiqhvio782] {
    min-width: 13rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    overflow: hidden;
}

.horizon-navigation a[b-jiqhvio782] {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0 0.75rem;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    color: var(--ink-900);
    font-size: 0.8125rem;
    text-decoration: none;
}

.horizon-navigation a:last-child[b-jiqhvio782] {
    border-right: 0;
}

.horizon-navigation a:hover[b-jiqhvio782],
.horizon-navigation a:focus-visible[b-jiqhvio782] {
    color: var(--accent-strong);
    background: var(--surface-hover);
}

.prepare-command[b-jiqhvio782] {
    min-height: 2.75rem;
    white-space: nowrap;
}

.horizon-pulse[b-jiqhvio782] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
}

.pulse-month[b-jiqhvio782] {
    min-width: 0;
    min-height: 7.5rem;
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
    color: var(--ink-900);
    text-decoration: none;
}

.pulse-month:last-child[b-jiqhvio782] {
    border-right: 0;
}

.pulse-month:hover[b-jiqhvio782],
.pulse-month:focus-visible[b-jiqhvio782] {
    background: var(--surface-hover);
}

.pulse-date[b-jiqhvio782] {
    margin-bottom: 0.45rem;
    color: var(--muted);
    font-size: 0.8125rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pulse-month strong[b-jiqhvio782] {
    overflow: hidden;
    color: var(--ink-950);
    font: 750 clamp(1rem, 1.45vw, 1.35rem)/1.2 var(--font-mono);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pulse-track[b-jiqhvio782] {
    height: 0.25rem;
    margin: 0.65rem 0 0.45rem;
    display: block;
    overflow: hidden;
    border-radius: 99px;
    background: var(--surface-soft);
}

.pulse-track i[b-jiqhvio782] {
    display: block;
    height: 100%;
    background: var(--success);
}

.coverage-partial .pulse-track i[b-jiqhvio782] {
    background: var(--warning);
}

.coverage-empty .pulse-track i[b-jiqhvio782] {
    background: var(--danger);
}

.pulse-month small[b-jiqhvio782] {
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.matrix-shell[b-jiqhvio782] {
    margin-top: 1rem;
    border-top: 1px solid var(--line-strong);
}

.matrix-toolbar[b-jiqhvio782] {
    padding: 1rem 0 0.75rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.matrix-toolbar h2[b-jiqhvio782] {
    margin: 0.15rem 0 0;
    font-size: 1.25rem;
}

.matrix-legend[b-jiqhvio782] {
    position: relative;
}

.matrix-legend > summary[b-jiqhvio782] {
    min-height: 2.75rem;
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    color: var(--accent);
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 750;
    list-style: none;
}

.matrix-legend > summary[b-jiqhvio782]::-webkit-details-marker {
    display: none;
}

.matrix-legend > div[b-jiqhvio782] {
    min-width: 11rem;
    padding: 0.7rem;
    position: absolute;
    z-index: 5;
    top: calc(100% + 0.35rem);
    right: 0;
    display: grid;
    gap: 0.55rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    background: var(--surface-raised);
}

.matrix-legend span[b-jiqhvio782] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.matrix-legend i[b-jiqhvio782] {
    width: 0.65rem;
    height: 0.65rem;
    flex: 0 0 auto;
    border-radius: 50%;
}

.legend-gap[b-jiqhvio782] {
    border: 1px dashed var(--line-strong);
}

.legend-open[b-jiqhvio782] {
    background: var(--warning);
}

.legend-done[b-jiqhvio782] {
    background: var(--success);
}

.matrix-scroll[b-jiqhvio782] {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    scrollbar-color: var(--line-strong) var(--surface-soft);
}

.horizon-matrix[b-jiqhvio782] {
    width: 100%;
    min-width: 70rem;
    border-collapse: collapse;
    table-layout: fixed;
}

.horizon-matrix th[b-jiqhvio782],
.horizon-matrix td[b-jiqhvio782] {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.horizon-matrix tr > :last-child[b-jiqhvio782] {
    border-right: 0;
}

.horizon-matrix thead th[b-jiqhvio782] {
    height: 3.4rem;
    padding: 0.55rem 0.75rem;
    color: var(--muted-strong);
    background: var(--surface-soft);
    font-size: 0.8125rem;
    text-align: left;
    text-transform: uppercase;
}

.horizon-matrix thead th:first-child[b-jiqhvio782],
.horizon-matrix tbody th[b-jiqhvio782],
.horizon-matrix tfoot th[b-jiqhvio782] {
    width: 15rem;
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--surface-raised);
    box-shadow: 1px 0 0 var(--line-strong);
}

.horizon-matrix thead th:first-child[b-jiqhvio782] {
    z-index: 3;
}

.horizon-matrix thead th span[b-jiqhvio782],
.horizon-matrix thead th small[b-jiqhvio782],
.horizon-matrix tbody th a[b-jiqhvio782],
.horizon-matrix tbody th span[b-jiqhvio782],
.horizon-matrix tbody th small[b-jiqhvio782] {
    display: block;
}

.horizon-matrix thead th small[b-jiqhvio782],
.horizon-matrix tbody th small[b-jiqhvio782] {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.8125rem;
}

.horizon-matrix tbody th[b-jiqhvio782] {
    height: 5.5rem;
    padding: 0.75rem 0.9rem;
    text-align: left;
}

.horizon-matrix tbody th a[b-jiqhvio782] {
    overflow: hidden;
    color: var(--ink-950);
    font-weight: 800;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.horizon-matrix tbody th span[b-jiqhvio782] {
    margin-top: 0.15rem;
    color: var(--accent-strong);
    font-size: 0.8125rem;
}

.horizon-matrix td[b-jiqhvio782] {
    height: 5.5rem;
    padding: 0;
    vertical-align: top;
}

.horizon-matrix td > a[b-jiqhvio782],
.horizon-matrix td > .cell-static[b-jiqhvio782] {
    height: 100%;
    padding: 0.7rem 0.75rem;
    display: flex;
    flex-direction: column;
    border-top: 3px solid transparent;
    color: var(--ink-900);
    text-decoration: none;
}

.horizon-matrix td > a:hover[b-jiqhvio782],
.horizon-matrix td > a:focus-visible[b-jiqhvio782] {
    background: var(--surface-hover);
}

.horizon-matrix td strong[b-jiqhvio782] {
    color: var(--ink-950);
    font: 750 0.875rem var(--font-mono);
}

.horizon-matrix td span[b-jiqhvio782],
.horizon-matrix td small[b-jiqhvio782] {
    margin-top: 0.25rem;
    display: block;
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.horizon-matrix td small[b-jiqhvio782] {
    margin-top: auto;
    color: var(--muted);
}

.horizon-matrix .cell-gap > a[b-jiqhvio782] {
    border-top-color: var(--line-strong);
    background: repeating-linear-gradient(-45deg, transparent, transparent 0.4rem, color-mix(in srgb, var(--line) 35%, transparent) 0.4rem, color-mix(in srgb, var(--line) 35%, transparent) 0.45rem);
}

.horizon-matrix .cell-outside > .cell-static[b-jiqhvio782] {
    border-top-color: var(--line-strong);
    color: var(--muted);
    background: var(--surface-soft);
}

.horizon-matrix .cell-open > a[b-jiqhvio782],
.creditor-months .cell-open[b-jiqhvio782] {
    border-left-color: var(--warning);
}

.horizon-matrix .cell-open > a[b-jiqhvio782] {
    border-top-color: var(--warning);
}

.horizon-matrix .cell-done > a[b-jiqhvio782],
.creditor-months .cell-done[b-jiqhvio782] {
    border-left-color: var(--success);
}

.horizon-matrix .cell-done > a[b-jiqhvio782] {
    border-top-color: var(--success);
}

.horizon-matrix .cell-excess > a[b-jiqhvio782],
.creditor-months .cell-excess[b-jiqhvio782] {
    border-left-color: var(--danger);
}

.horizon-matrix .cell-excess > a[b-jiqhvio782] {
    border-top-color: var(--danger);
}

.horizon-matrix tfoot th[b-jiqhvio782],
.horizon-matrix tfoot td[b-jiqhvio782] {
    height: 4rem;
    padding: 0.7rem 0.75rem;
    color: var(--ink-950);
    background: var(--surface-soft);
}

.horizon-matrix tfoot th[b-jiqhvio782] {
    z-index: 2;
    font-size: 0.8125rem;
    text-align: left;
    text-transform: uppercase;
}

.horizon-matrix tfoot td strong[b-jiqhvio782],
.horizon-matrix tfoot td span[b-jiqhvio782] {
    display: block;
}

.horizon-matrix tfoot td span[b-jiqhvio782] {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.8125rem;
}

.horizon-mobile[b-jiqhvio782],
.scroll-hint[b-jiqhvio782] {
    display: none;
}

@media (max-width: 1100px) {
    .horizon-heading[b-jiqhvio782] {
        align-items: flex-start;
        flex-direction: column;
    }

    .horizon-actions[b-jiqhvio782] {
        width: 100%;
    }

    .horizon-navigation[b-jiqhvio782] {
        flex: 1;
    }

    .horizon-pulse[b-jiqhvio782] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pulse-month:nth-child(3n)[b-jiqhvio782] {
        border-right: 0;
    }

    .pulse-month:nth-child(-n + 3)[b-jiqhvio782] {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 700px) {
    .horizon-heading[b-jiqhvio782] {
        padding-top: 0.35rem;
    }

    .horizon-heading h1[b-jiqhvio782] {
        font-size: 2.65rem;
    }

    .horizon-actions[b-jiqhvio782] {
        flex-direction: column;
    }

    .prepare-command[b-jiqhvio782] {
        width: 100%;
    }

    .horizon-pulse[b-jiqhvio782] {
        margin-right: -1rem;
        margin-left: -1rem;
        padding: 0 1rem 0.5rem;
        grid-auto-columns: minmax(10rem, 72vw);
        grid-template-columns: none;
        grid-auto-flow: column;
        border: 0;
        border-radius: 0;
        background: transparent;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .pulse-month[b-jiqhvio782],
    .pulse-month:nth-child(3n)[b-jiqhvio782],
    .pulse-month:nth-child(-n + 3)[b-jiqhvio782] {
        min-height: 7rem;
        border: 1px solid var(--line);
        border-radius: var(--radius-small);
        background: var(--surface);
        scroll-snap-align: start;
    }

    .matrix-toolbar[b-jiqhvio782] {
        align-items: flex-start;
        flex-direction: column;
    }

    .matrix-legend[b-jiqhvio782],
    .matrix-legend > summary[b-jiqhvio782] {
        width: 100%;
    }

    .matrix-legend > div[b-jiqhvio782] {
        right: auto;
        left: 0;
    }

    .matrix-scroll[b-jiqhvio782] {
        display: none;
    }

    .horizon-mobile[b-jiqhvio782] {
        display: block;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
        overflow: hidden;
    }

    .horizon-mobile > details[b-jiqhvio782] {
        border-top: 1px solid var(--line);
    }

    .horizon-mobile > details:first-child[b-jiqhvio782] {
        border-top: 0;
    }

    .horizon-mobile summary[b-jiqhvio782] {
        min-height: 4.5rem;
        padding: 0.75rem 0.9rem;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.8rem;
        cursor: pointer;
        list-style: none;
    }

    .horizon-mobile summary[b-jiqhvio782]::-webkit-details-marker {
        display: none;
    }

    .horizon-mobile summary > span:first-child[b-jiqhvio782] {
        min-width: 0;
        display: grid;
        gap: 0.15rem;
    }

    .horizon-mobile summary > span:last-child[b-jiqhvio782],
    .horizon-mobile summary small[b-jiqhvio782] {
        color: var(--muted);
        font-size: 0.8125rem;
    }

    .horizon-mobile summary > span:last-child[b-jiqhvio782] {
        max-width: 9rem;
        text-align: right;
    }

    .horizon-mobile details[open] summary[b-jiqhvio782] {
        border-bottom: 1px solid var(--line);
        background: var(--surface-soft);
    }

    .creditor-months[b-jiqhvio782] {
        display: grid;
    }

    .creditor-months a[b-jiqhvio782],
    .creditor-months .cell-static[b-jiqhvio782] {
        min-height: 4rem;
        padding: 0.7rem 0.9rem;
        display: grid;
        grid-template-columns: 5.2rem minmax(0, 1fr);
        gap: 0.1rem 0.75rem;
        border-top: 1px solid var(--line);
        border-left: 3px solid var(--line-strong);
        color: var(--ink-900);
        text-decoration: none;
    }

    .creditor-months > :first-child[b-jiqhvio782] {
        border-top: 0;
    }

    .creditor-months a:hover[b-jiqhvio782],
    .creditor-months a:focus-visible[b-jiqhvio782] {
        background: var(--surface-hover);
    }

    .creditor-months .cell-static[b-jiqhvio782] {
        color: var(--muted-strong);
        background: var(--surface-soft);
    }

    .creditor-months .mobile-month[b-jiqhvio782] {
        grid-row: 1 / span 2;
        color: var(--accent);
        font: 700 0.8125rem var(--font-mono);
    }

    .creditor-months small[b-jiqhvio782] {
        color: var(--muted);
        font-size: 0.8125rem;
    }
}

@media (max-width: 380px) {
    .horizon-mobile summary[b-jiqhvio782] {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .horizon-mobile summary > span:last-child[b-jiqhvio782] {
        max-width: none;
        text-align: left;
    }
}
/* /Components/Pages/Journal.razor.rz.scp.css */
.journal-heading[b-xfkp4igmxn] {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.journal-heading h1[b-xfkp4igmxn] {
    margin-bottom: 0.35rem;
}

.journal-heading p:last-child[b-xfkp4igmxn] {
    max-width: 48rem;
    margin: 0;
    color: var(--muted-strong);
}

.error-banner[b-xfkp4igmxn] {
    margin-bottom: 0.85rem;
    padding: 0.85rem 1rem;
    border: 1px solid color-mix(in srgb, var(--danger) 35%, var(--line));
    border-radius: var(--radius-small);
    color: var(--danger);
    background: var(--danger-soft);
}

.journal-controls[b-xfkp4igmxn] {
    margin-bottom: 0.85rem;
    padding: 0.8rem;
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) minmax(11rem, 14rem) auto;
    align-items: end;
    gap: 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.journal-controls label[b-xfkp4igmxn] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.journal-controls label span[b-xfkp4igmxn],
.action-panel label span[b-xfkp4igmxn] {
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 700;
}

.journal-controls input[b-xfkp4igmxn],
.journal-controls select[b-xfkp4igmxn],
.action-panel select[b-xfkp4igmxn] {
    width: 100%;
    min-height: var(--tap-size);
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    color: var(--ink-950);
    background: var(--surface-raised);
}

.journal-controls > span[b-xfkp4igmxn] {
    min-height: var(--tap-size);
    display: flex;
    align-items: center;
    color: var(--muted-strong);
    font-size: 0.82rem;
    white-space: nowrap;
}

.journal-list[b-xfkp4igmxn] {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

.journal-list-header[b-xfkp4igmxn] {
    min-height: 2.7rem;
    padding: 0 0.9rem;
    display: grid;
    grid-template-columns: 4.25rem minmax(0, 1fr) 15rem;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--line-strong);
    color: var(--muted-strong);
    background: var(--surface-soft);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.journal-list-header span:last-child[b-xfkp4igmxn] {
    text-align: right;
}

.journal-entry[b-xfkp4igmxn] {
    position: relative;
    padding: 0.9rem;
    display: grid;
    grid-template-columns: 4.25rem minmax(0, 1fr) 15rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.journal-entry:last-child[b-xfkp4igmxn] {
    border-bottom: 0;
}

.journal-entry:hover[b-xfkp4igmxn] {
    background: color-mix(in srgb, var(--surface-hover) 65%, transparent);
}

.journal-entry.cancelled[b-xfkp4igmxn] {
    opacity: 0.66;
    background: var(--surface-soft);
}

.entry-date[b-xfkp4igmxn] {
    padding-right: 0.85rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.entry-date strong[b-xfkp4igmxn] {
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 1.35rem;
    line-height: 1;
}

.entry-date span[b-xfkp4igmxn],
.entry-date small[b-xfkp4igmxn] {
    color: var(--muted-strong);
    font-size: 0.72rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.entry-main[b-xfkp4igmxn] {
    min-width: 0;
}

.entry-title[b-xfkp4igmxn] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.entry-title > div[b-xfkp4igmxn] {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.entry-title a[b-xfkp4igmxn] {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 1rem;
    font-weight: 720;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.entry-title span[b-xfkp4igmxn] {
    color: var(--muted-strong);
    font-size: 0.78rem;
}

.entry-meta[b-xfkp4igmxn] {
    margin-top: 0.45rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.8rem;
    color: var(--muted-strong);
}

.entry-meta span[b-xfkp4igmxn] {
    position: relative;
    font-size: 0.78rem;
}

.entry-meta span + span[b-xfkp4igmxn]::before {
    position: absolute;
    left: -0.5rem;
    color: var(--line-strong);
    content: "·";
}

.entry-main > p[b-xfkp4igmxn] {
    margin: 0.5rem 0 0;
    color: var(--muted-strong);
    font-size: 0.82rem;
}

.entry-main .cancel-reason[b-xfkp4igmxn] {
    color: var(--danger);
}

.entry-amount[b-xfkp4igmxn] {
    min-width: 0;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
}

.entry-amount > strong[b-xfkp4igmxn] {
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 1.15rem;
}

.entry-actions[b-xfkp4igmxn] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

.entry-actions > button[b-xfkp4igmxn],
.entry-more > summary[b-xfkp4igmxn] {
    min-height: var(--tap-size);
    padding: 0.5rem 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    color: var(--accent);
    background: var(--surface);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.entry-actions > button:hover[b-xfkp4igmxn],
.entry-more > summary:hover[b-xfkp4igmxn] {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.entry-more[b-xfkp4igmxn] {
    position: relative;
}

.entry-more > summary[b-xfkp4igmxn]::-webkit-details-marker {
    display: none;
}

.entry-more[open] > summary[b-xfkp4igmxn] {
    border-color: var(--accent);
    color: var(--accent-contrast);
    background: var(--accent);
}

.entry-more > div[b-xfkp4igmxn] {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.35rem);
    right: 0;
    width: max-content;
    min-width: 12rem;
    padding: 0.35rem;
    display: grid;
    gap: 0.25rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    background: var(--surface-raised);
    box-shadow: var(--shadow);
}

.entry-more button[b-xfkp4igmxn] {
    min-height: var(--tap-size);
    padding: 0.55rem 0.65rem;
    border: 0;
    border-radius: 0.3rem;
    color: var(--ink-900);
    background: transparent;
    text-align: left;
}

.entry-more button:hover[b-xfkp4igmxn] {
    background: var(--surface-hover);
}

.entry-more .danger-link[b-xfkp4igmxn] {
    color: var(--danger);
}

.action-panel[b-xfkp4igmxn] {
    margin-top: 0.8rem;
    padding: 0.85rem;
    display: grid;
    gap: 0.65rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    background: var(--surface-soft);
}

.action-panel > strong[b-xfkp4igmxn] {
    color: var(--ink-950);
}

.action-panel label[b-xfkp4igmxn] {
    min-height: 2.25rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--muted-strong);
    font-size: 0.84rem;
}

.action-panel label:not(:has(input[type="checkbox"]))[b-xfkp4igmxn] {
    align-items: stretch;
    flex-direction: column;
}

.action-panel input[type="checkbox"][b-xfkp4igmxn] {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.action-panel > div[b-xfkp4igmxn] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.button-danger[b-xfkp4igmxn] {
    min-height: var(--tap-size);
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--danger);
    border-radius: var(--radius-small);
    color: #fff;
    background: var(--danger);
    font-weight: 750;
}

.risk-note[b-xfkp4igmxn] {
    color: var(--danger);
}

.journal-empty[b-xfkp4igmxn] {
    margin: 0;
    padding: 2rem 1rem;
    color: var(--muted);
    text-align: center;
}

.loading[b-xfkp4igmxn] {
    padding: 5rem 1rem;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 900px) {
    .journal-list-header[b-xfkp4igmxn],
    .journal-entry[b-xfkp4igmxn] {
        grid-template-columns: 3.5rem minmax(0, 1fr) 11rem;
    }

    .entry-title[b-xfkp4igmxn] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }
}

@media (max-width: 700px) {
    .journal-heading[b-xfkp4igmxn] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .journal-heading .button-primary[b-xfkp4igmxn],
    .journal-controls[b-xfkp4igmxn] {
        width: 100%;
    }

    .journal-controls[b-xfkp4igmxn] {
        grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.65fr);
    }

    .journal-controls > span[b-xfkp4igmxn] {
        min-height: 0;
        grid-column: 1 / -1;
    }

    .journal-list-header[b-xfkp4igmxn] {
        display: none;
    }

    .journal-entry[b-xfkp4igmxn] {
        grid-template-columns: 2.75rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .entry-date[b-xfkp4igmxn] {
        padding-right: 0.6rem;
    }

    .entry-title[b-xfkp4igmxn] {
        align-items: flex-start;
        flex-direction: row;
    }

    .entry-amount[b-xfkp4igmxn] {
        grid-column: 2;
        align-items: center;
        flex-direction: row;
    }

    .entry-more > div[b-xfkp4igmxn] {
        right: 0;
    }
}

@media (max-width: 470px) {
    .journal-heading p:last-child[b-xfkp4igmxn] {
        display: none;
    }

    .journal-controls[b-xfkp4igmxn] {
        grid-template-columns: 1fr;
    }

    .journal-controls > span[b-xfkp4igmxn] {
        grid-column: auto;
    }

    .journal-entry[b-xfkp4igmxn] {
        padding: 0.8rem 0.7rem;
    }

    .entry-title[b-xfkp4igmxn] {
        flex-direction: column;
    }

    .entry-meta span:nth-child(3)[b-xfkp4igmxn],
    .entry-meta span:nth-child(3)[b-xfkp4igmxn]::before {
        display: none;
    }

    .entry-amount[b-xfkp4igmxn] {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .entry-actions[b-xfkp4igmxn] {
        width: 100%;
        justify-content: flex-start;
    }

    .entry-actions > button[b-xfkp4igmxn] {
        flex: 1;
    }

    .entry-more > div[b-xfkp4igmxn] {
        right: auto;
        left: 0;
    }

    .action-panel > div[b-xfkp4igmxn] {
        flex-direction: column;
    }

    .action-panel > div button[b-xfkp4igmxn] {
        width: 100%;
    }
}
/* /Components/Pages/More.razor.rz.scp.css */
.more-heading[b-jl7sn1n1yo] {
    margin-bottom: 1rem;
    padding-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line-strong);
}

.more-heading h1[b-jl7sn1n1yo] {
    margin-bottom: 0.35rem;
}

.more-heading p:last-child[b-jl7sn1n1yo] {
    max-width: 48rem;
    margin: 0;
    color: var(--muted-strong);
}

.more-heading .button-primary[b-jl7sn1n1yo] {
    min-height: 2.75rem;
    flex: 0 0 auto;
}

.more-groups[b-jl7sn1n1yo] {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.more-groups > article[b-jl7sn1n1yo] {
    min-width: 0;
    padding: 1rem 1.1rem;
    display: grid;
    grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 1fr);
    gap: 1.25rem;
    border-top: 1px solid var(--line);
}

.more-groups > article:first-child[b-jl7sn1n1yo] {
    border-top: 0;
}

.more-groups h2[b-jl7sn1n1yo] {
    margin: 0.18rem 0 0;
    font-size: 1.05rem;
}

.group-heading[b-jl7sn1n1yo] {
    align-self: center;
}

.more-groups nav[b-jl7sn1n1yo] {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.more-groups a[b-jl7sn1n1yo] {
    min-height: 4.5rem;
    padding: 0.7rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--line);
    color: var(--ink-950);
    text-decoration: none;
}

.more-groups a:nth-child(3n + 1)[b-jl7sn1n1yo] {
    border-left: 0;
}

.more-groups a[b-jl7sn1n1yo]::after {
    content: "→";
    position: absolute;
    right: 0.75rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-0.25rem);
    transition: opacity 120ms ease, transform 120ms ease;
}

.more-groups a[b-jl7sn1n1yo] {
    position: relative;
}

.more-groups a:hover[b-jl7sn1n1yo],
.more-groups a:focus-visible[b-jl7sn1n1yo] {
    background: var(--surface-hover);
}

.more-groups a:hover[b-jl7sn1n1yo]::after,
.more-groups a:focus-visible[b-jl7sn1n1yo]::after {
    opacity: 1;
    transform: translateX(0);
}

.more-groups a:hover strong[b-jl7sn1n1yo],
.more-groups a:focus-visible strong[b-jl7sn1n1yo] {
    color: var(--accent);
}

.more-groups span[b-jl7sn1n1yo] {
    max-width: 18rem;
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.4;
}

@media (max-width: 1050px) {
    .more-groups > article[b-jl7sn1n1yo] {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

@media (max-width: 760px) {
    .more-heading[b-jl7sn1n1yo] {
        align-items: flex-start;
        flex-direction: column;
    }

    .more-heading .button-primary[b-jl7sn1n1yo] {
        width: 100%;
    }

    .more-groups > article[b-jl7sn1n1yo] {
        padding: 0;
        gap: 0;
    }

    .group-heading[b-jl7sn1n1yo] {
        margin-right: 1rem;
        margin-left: 1rem;
    }

    .group-heading[b-jl7sn1n1yo] {
        margin-top: 1rem;
        margin-bottom: 0.65rem;
    }

    .more-groups nav[b-jl7sn1n1yo] {
        grid-template-columns: 1fr;
    }

    .more-groups a[b-jl7sn1n1yo],
    .more-groups a:nth-child(3n + 1)[b-jl7sn1n1yo] {
        min-height: 4.75rem;
        padding-right: 2.5rem;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .more-groups a[b-jl7sn1n1yo]::after {
        opacity: 1;
        transform: none;
    }
}
/* /Components/Pages/NewPayment.razor.rz.scp.css */
.form-heading[b-agi205gthe] {
    max-width: 58rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.back-link[b-agi205gthe],
.quiet-return[b-agi205gthe] {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.back-link[b-agi205gthe] {
    margin-bottom: 0.75rem;
}

.back-link:hover[b-agi205gthe],
.quiet-return:hover[b-agi205gthe] {
    color: var(--accent-strong);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.form-heading h1[b-agi205gthe] {
    max-width: 15ch;
    margin: 0.25rem 0 0.65rem;
    letter-spacing: -0.045em;
}

.form-heading p:last-child[b-agi205gthe] {
    max-width: 48rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 1rem;
    line-height: 1.6;
}

.form-error[b-agi205gthe] {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid color-mix(in srgb, var(--danger) 42%, var(--line));
    color: var(--danger);
    background: var(--danger-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.payment-flow[b-agi205gthe] {
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.form-panel[b-agi205gthe] {
    padding: clamp(1.25rem, 3vw, 2.25rem);
}

.section-head[b-agi205gthe] {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.section-head > span[b-agi205gthe],
.summary-index[b-agi205gthe] {
    width: 2rem;
    height: 2rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
    color: var(--accent-strong);
    background: var(--accent-soft);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 800;
}

.section-head h2[b-agi205gthe] {
    margin: 0;
}

.section-head p[b-agi205gthe] {
    margin: 0.25rem 0 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.5;
}

.two-columns[b-agi205gthe] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
}

.amount-status[b-agi205gthe] {
    padding-bottom: 0.25rem;
}

.field[b-agi205gthe] {
    margin-bottom: 1rem;
}

.field label[b-agi205gthe] {
    margin-bottom: 0.45rem;
    display: block;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 750;
}

.field input[b-agi205gthe],
.field select[b-agi205gthe],
.field textarea[b-agi205gthe] {
    width: 100%;
    min-height: 3rem;
    padding: 0.68rem 0.8rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.35rem;
    color: var(--ink-950);
    background: var(--paper);
    font-size: 1rem;
}

.field textarea[b-agi205gthe] {
    min-height: 7rem;
    resize: vertical;
}

.field input:focus[b-agi205gthe],
.field select:focus[b-agi205gthe],
.field textarea:focus[b-agi205gthe] {
    border-color: var(--accent);
    outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent);
    outline-offset: 1px;
}

.field small[b-agi205gthe],
.check-row small[b-agi205gthe] {
    margin-top: 0.35rem;
    display: block;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

.money-input[b-agi205gthe] {
    position: relative;
}

.money-input input[b-agi205gthe] {
    padding-right: 3rem;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 750;
}

.money-input > span[b-agi205gthe] {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.75rem;
    height: 100%;
    display: grid;
    place-items: center;
    border-left: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.875rem;
    pointer-events: none;
}

.balance-options[b-agi205gthe],
.optional-section[b-agi205gthe] {
    border-top: 1px solid var(--line);
}

.balance-options > summary[b-agi205gthe],
.optional-section > summary[b-agi205gthe] {
    min-height: 3.25rem;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 750;
    cursor: pointer;
}

.balance-options > summary:focus-visible[b-agi205gthe],
.optional-section > summary:focus-visible[b-agi205gthe] {
    outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
    outline-offset: 3px;
}

.balance-options .details-content[b-agi205gthe] {
    padding: 0.25rem 0 1rem;
}

.optional-section > summary[b-agi205gthe] {
    padding: 1rem clamp(1.25rem, 3vw, 2.25rem);
    list-style: none;
}

.optional-section > summary[b-agi205gthe]::-webkit-details-marker {
    display: none;
}

.optional-section > summary[b-agi205gthe]::after {
    margin-left: 0.25rem;
    color: var(--muted);
    content: "+";
    font-size: 1.35rem;
    font-weight: 400;
}

.optional-section[open] > summary[b-agi205gthe]::after {
    content: "−";
}

.summary-copy[b-agi205gthe] {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.summary-copy strong[b-agi205gthe] {
    font-size: 1rem;
}

.summary-copy small[b-agi205gthe],
.summary-state[b-agi205gthe] {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.summary-state[b-agi205gthe] {
    padding: 0.25rem 0.55rem;
    border: 1px solid var(--line);
}

.optional-content[b-agi205gthe] {
    padding: 0 clamp(1.25rem, 3vw, 2.25rem) 1.75rem;
}

.check-row[b-agi205gthe] {
    min-height: 2.75rem;
    padding: 0.65rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.45;
    cursor: pointer;
}

.check-row input[b-agi205gthe] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.check-row > span[b-agi205gthe] {
    display: flex;
    flex-direction: column;
}

.check-row.disabled[b-agi205gthe] {
    opacity: 0.55;
    cursor: not-allowed;
}

.check-row.required strong[b-agi205gthe]::after {
    color: var(--danger);
    content: " *";
}

.inline-warning[b-agi205gthe],
.rib-alert[b-agi205gthe] {
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--warning);
    color: var(--warning);
    background: var(--warning-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.confirmation-panel[b-agi205gthe] {
    margin-top: 1.25rem;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.payment-summary[b-agi205gthe] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
}

.payment-summary > div[b-agi205gthe] {
    min-width: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-right: 1px solid var(--line);
}

.payment-summary > div:last-child[b-agi205gthe] {
    border-right: 0;
}

.payment-summary span[b-agi205gthe] {
    color: var(--muted);
    font-size: 0.875rem;
}

.payment-summary strong[b-agi205gthe] {
    overflow-wrap: anywhere;
    color: var(--ink-950);
    font-size: 1rem;
}

.rib-alert[b-agi205gthe] {
    margin: 1rem 1rem 0;
    display: flex;
    flex-direction: column;
}

.confirmation-panel > .check-row[b-agi205gthe] {
    margin-inline: 1rem;
    border-bottom: 1px solid var(--line);
}

.form-actions[b-agi205gthe] {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    background: var(--surface-raised);
}

.form-actions .button-primary[b-agi205gthe] {
    min-height: 3rem;
    min-width: 13rem;
    font-size: 0.9375rem;
}

.button-primary:disabled[b-agi205gthe] {
    opacity: 0.6;
    cursor: wait;
}

@media (min-width: 901px) {
    .payment-flow[b-agi205gthe],
    .confirmation-panel[b-agi205gthe] {
        max-width: 74rem;
    }
}

@media (max-width: 700px) {
    .form-heading[b-agi205gthe] {
        margin-bottom: 1.25rem;
    }

    .form-heading h1[b-agi205gthe] {
        max-width: none;
    }

    .two-columns[b-agi205gthe],
    .payment-summary[b-agi205gthe] {
        grid-template-columns: 1fr;
    }

    .payment-summary > div[b-agi205gthe] {
        padding: 0.8rem 1rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .payment-summary > div:last-child[b-agi205gthe] {
        border-bottom: 0;
    }

    .summary-state[b-agi205gthe] {
        display: none;
    }

    .confirmation-panel[b-agi205gthe] {
        padding-bottom: 0;
    }

    .form-actions[b-agi205gthe] {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        box-shadow: none;
    }

    .form-actions .button-primary[b-agi205gthe] {
        width: 100%;
        min-height: 3.25rem;
        order: 1;
    }

    .form-actions .quiet-return[b-agi205gthe] {
        min-height: 2.75rem;
        justify-content: center;
        order: 2;
    }
}
/* /Components/Pages/NotificationSettings.razor.rz.scp.css */
.page-heading[b-imf4s6tg8b],
.settings-title[b-imf4s6tg8b],
.history-heading[b-imf4s6tg8b] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}

.page-heading[b-imf4s6tg8b] {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line-strong);
}

.page-heading h1[b-imf4s6tg8b],
.channel-summary h2[b-imf4s6tg8b],
.settings-title h2[b-imf4s6tg8b],
.history-heading h2[b-imf4s6tg8b],
.privacy-panel h2[b-imf4s6tg8b] {
    margin: 0.2rem 0 0.35rem;
}

.page-heading p:last-child[b-imf4s6tg8b],
.channel-summary p[b-imf4s6tg8b],
.settings-title p:last-child[b-imf4s6tg8b],
.privacy-panel p:last-child[b-imf4s6tg8b] {
    max-width: 52rem;
    margin: 0;
    color: var(--muted-strong);
}

.heading-actions[b-imf4s6tg8b] {
    display: flex;
    flex: 0 0 auto;
    gap: 0.5rem;
}

.heading-actions button[b-imf4s6tg8b],
.settings-title button[b-imf4s6tg8b],
.history-heading button[b-imf4s6tg8b] {
    min-height: 2.75rem;
}

.page-heading button:disabled[b-imf4s6tg8b] {
    cursor: not-allowed;
    opacity: 0.45;
}

.status-message[b-imf4s6tg8b] {
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-left: 3px solid currentColor;
    border-radius: var(--radius-small);
}

.status-message.success[b-imf4s6tg8b] {
    color: var(--success);
    background: var(--success-soft);
}

.status-message.error[b-imf4s6tg8b] {
    color: var(--danger);
    background: var(--danger-soft);
}

.notification-overview[b-imf4s6tg8b],
.settings-shell[b-imf4s6tg8b],
.history-panel[b-imf4s6tg8b],
.privacy-panel[b-imf4s6tg8b] {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.notification-overview[b-imf4s6tg8b] {
    margin-bottom: 1rem;
}

.channel-summary[b-imf4s6tg8b] {
    min-height: 5.25rem;
    padding: 1rem 1.1rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(12rem, auto);
    align-items: center;
    gap: 0.9rem;
    border-bottom: 1px solid var(--line);
}

.channel-summary code[b-imf4s6tg8b] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    overflow-wrap: anywhere;
    text-align: right;
}

.status-badge[b-imf4s6tg8b],
.history-state[b-imf4s6tg8b] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-badge.active[b-imf4s6tg8b],
.history-state.envoyee[b-imf4s6tg8b] {
    color: var(--success);
    background: var(--success-soft);
}

.status-badge.inactive[b-imf4s6tg8b],
.history-state.enattente[b-imf4s6tg8b] {
    color: var(--warning);
    background: var(--warning-soft);
}

.history-state.encours[b-imf4s6tg8b] {
    color: var(--info);
    background: var(--info-soft);
}

.history-state.echec[b-imf4s6tg8b] {
    color: var(--danger);
    background: var(--danger-soft);
}

.history-state.neutralisee[b-imf4s6tg8b] {
    color: var(--muted-strong);
    background: var(--surface-soft);
}

.notification-metrics[b-imf4s6tg8b] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.notification-metrics > div[b-imf4s6tg8b] {
    min-width: 0;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 1px solid var(--line);
}

.notification-metrics > div:first-child[b-imf4s6tg8b] {
    border-left: 0;
}

.notification-metrics p[b-imf4s6tg8b] {
    min-width: 0;
    margin: 0;
    display: grid;
    gap: 0.15rem;
}

.notification-metrics small[b-imf4s6tg8b] {
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.35;
}

.metric[b-imf4s6tg8b] {
    color: var(--accent);
    font: 750 1.75rem/1 var(--font-mono);
}

.metric.danger[b-imf4s6tg8b] {
    color: var(--danger);
}

.settings-shell[b-imf4s6tg8b] {
    margin-bottom: 1rem;
    padding: 1.1rem;
}

.settings-title[b-imf4s6tg8b] {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.master-row[b-imf4s6tg8b],
.rules-grid[b-imf4s6tg8b] {
    display: grid;
}

.master-row[b-imf4s6tg8b] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rules-grid[b-imf4s6tg8b] {
    margin-top: 1rem;
    border-top: 1px solid var(--line);
}

.toggle-row[b-imf4s6tg8b],
.rule-card[b-imf4s6tg8b] {
    min-height: 4.5rem;
    padding: 0.9rem 0.15rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.toggle-row:first-child[b-imf4s6tg8b] {
    padding-right: 1rem;
    border-right: 1px solid var(--line);
}

.toggle-row:last-child[b-imf4s6tg8b] {
    padding-left: 1rem;
}

.toggle-row input[b-imf4s6tg8b],
.rule-card input[b-imf4s6tg8b] {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
    margin-top: 0.15rem;
    accent-color: var(--accent);
}

.toggle-row span[b-imf4s6tg8b],
.rule-card span[b-imf4s6tg8b] {
    display: grid;
    gap: 0.2rem;
}

.toggle-row small[b-imf4s6tg8b],
.rule-card small[b-imf4s6tg8b] {
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.threshold-grid[b-imf4s6tg8b] {
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.threshold-grid label[b-imf4s6tg8b] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--ink-800);
    font-size: 0.875rem;
    font-weight: 700;
}

.threshold-grid label > div[b-imf4s6tg8b] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.threshold-grid input[b-imf4s6tg8b],
.threshold-grid select[b-imf4s6tg8b] {
    width: 100%;
    min-height: 3rem;
    padding: 0.65rem 0.7rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    color: var(--ink-950);
    background: var(--surface-raised);
}

.threshold-grid b[b-imf4s6tg8b] {
    font-weight: 700;
}

.integrity-note[b-imf4s6tg8b] {
    margin: 1rem 0 0;
    padding: 0.75rem 0;
    border-top: 1px dashed var(--line-strong);
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.history-panel[b-imf4s6tg8b] {
    margin-bottom: 1rem;
    padding: 1.1rem;
}

.history-heading[b-imf4s6tg8b] {
    align-items: center;
}

.history-disclosure[b-imf4s6tg8b] {
    margin-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.history-disclosure summary[b-imf4s6tg8b] {
    min-height: 2.75rem;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    color: var(--accent);
    cursor: pointer;
    font-weight: 750;
}

.history-list[b-imf4s6tg8b] {
    border-bottom: 1px solid var(--line);
}

.history-list article[b-imf4s6tg8b] {
    padding: 0.85rem 0;
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 0.8rem;
    border-top: 1px solid var(--line);
}

.history-list article > div[b-imf4s6tg8b] {
    min-width: 0;
    display: grid;
    gap: 0.18rem;
}

.history-list small[b-imf4s6tg8b],
.history-list em[b-imf4s6tg8b] {
    font-size: 0.8125rem;
}

.history-list small[b-imf4s6tg8b] {
    color: var(--muted);
}

.history-list em[b-imf4s6tg8b] {
    color: var(--danger);
    overflow-wrap: anywhere;
}

.empty-history[b-imf4s6tg8b] {
    margin-bottom: 0;
    color: var(--muted);
}

.privacy-panel[b-imf4s6tg8b] {
    margin-bottom: 1rem;
    padding: 0.9rem 1.1rem;
    border-left: 3px solid var(--info);
}

@media (max-width: 960px) {
    .threshold-grid[b-imf4s6tg8b] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .channel-summary[b-imf4s6tg8b] {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .channel-summary code[b-imf4s6tg8b] {
        grid-column: 2;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .page-heading[b-imf4s6tg8b],
    .settings-title[b-imf4s6tg8b],
    .history-heading[b-imf4s6tg8b] {
        flex-direction: column;
    }

    .heading-actions[b-imf4s6tg8b],
    .heading-actions button[b-imf4s6tg8b],
    .settings-title button[b-imf4s6tg8b],
    .history-heading button[b-imf4s6tg8b] {
        width: 100%;
    }

    .heading-actions[b-imf4s6tg8b] {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .channel-summary[b-imf4s6tg8b] {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .channel-summary code[b-imf4s6tg8b] {
        grid-column: auto;
    }

    .notification-metrics[b-imf4s6tg8b] {
        grid-template-columns: 1fr;
    }

    .notification-metrics > div[b-imf4s6tg8b] {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .notification-metrics > div:first-child[b-imf4s6tg8b] {
        border-top: 0;
    }

    .master-row[b-imf4s6tg8b],
    .threshold-grid[b-imf4s6tg8b] {
        grid-template-columns: 1fr;
    }

    .toggle-row:first-child[b-imf4s6tg8b] {
        padding-right: 0.15rem;
        border-right: 0;
    }

    .toggle-row:last-child[b-imf4s6tg8b] {
        padding-left: 0.15rem;
    }

    .history-list article[b-imf4s6tg8b] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .heading-actions[b-imf4s6tg8b] {
        grid-template-columns: 1fr;
    }

    .settings-shell[b-imf4s6tg8b],
    .history-panel[b-imf4s6tg8b] {
        padding: 0.9rem;
    }
}
/* /Components/Pages/Operations.razor.rz.scp.css */
.operations-heading[b-etciprtvq7] {
    padding-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.operations-heading h1[b-etciprtvq7],
.operations-heading p:last-child[b-etciprtvq7] {
    margin-bottom: 0;
}

.operations-heading p:last-child[b-etciprtvq7] {
    max-width: 60rem;
    color: var(--muted-strong);
}

.operations-heading button[b-etciprtvq7] {
    min-height: 2.75rem;
    flex: 0 0 auto;
}

.operations-state[b-etciprtvq7] {
    min-height: 4.5rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-left: 3px solid var(--success);
    border-radius: var(--radius-small);
    background: var(--success-soft);
}

.operations-state > span[b-etciprtvq7] {
    width: 0.75rem;
    height: 0.75rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--success) 18%, transparent);
}

.operations-state.unhealthy[b-etciprtvq7] {
    border-left-color: var(--danger);
    background: var(--danger-soft);
}

.operations-state.unhealthy > span[b-etciprtvq7] {
    background: var(--danger);
}

.operations-state div[b-etciprtvq7] {
    display: grid;
    gap: 0.15rem;
}

.operations-state small[b-etciprtvq7] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.operations-kpis[b-etciprtvq7] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.operations-kpis div[b-etciprtvq7] {
    min-width: 0;
    min-height: 6.5rem;
    padding: 1rem 1.1rem;
    display: grid;
    align-content: center;
    gap: 0.25rem;
    border-left: 1px solid var(--line);
}

.operations-kpis div:first-child[b-etciprtvq7] {
    border-left: 0;
}

.operations-kpis span[b-etciprtvq7],
.operations-grid dt[b-etciprtvq7] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.operations-kpis strong[b-etciprtvq7] {
    color: var(--ink-950);
    font: 750 1.75rem/1.1 var(--font-mono);
}

.operations-kpis small[b-etciprtvq7] {
    color: var(--muted-strong);
    font-size: 0.8125rem;
}

.operations-kpis .good strong[b-etciprtvq7] {
    color: var(--success);
}

.operations-kpis .bad strong[b-etciprtvq7] {
    color: var(--danger);
}

.operations-details[b-etciprtvq7],
.operations-contract[b-etciprtvq7] {
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.operations-details > summary[b-etciprtvq7],
.operations-contract > summary[b-etciprtvq7] {
    min-height: 4.25rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
}

.operations-details > summary[b-etciprtvq7]::-webkit-details-marker,
.operations-contract > summary[b-etciprtvq7]::-webkit-details-marker {
    display: none;
}

.operations-details > summary > span:first-child[b-etciprtvq7],
.operations-contract > summary > span:first-child[b-etciprtvq7] {
    display: grid;
    gap: 0.12rem;
}

.operations-details summary small[b-etciprtvq7],
.operations-contract summary small[b-etciprtvq7] {
    color: var(--muted);
    font-size: 0.8125rem;
}

.summary-action[b-etciprtvq7] {
    color: var(--accent);
    font-weight: 750;
}

.operations-details[open] > summary[b-etciprtvq7],
.operations-contract[open] > summary[b-etciprtvq7] {
    border-bottom: 1px solid var(--line);
}

.operations-details[open] .summary-action[b-etciprtvq7],
.operations-contract[open] .summary-action[b-etciprtvq7] {
    font-size: 0;
}

.operations-details[open] .summary-action[b-etciprtvq7]::after,
.operations-contract[open] .summary-action[b-etciprtvq7]::after {
    content: "Masquer";
    font-size: 0.875rem;
}

.operations-grid[b-etciprtvq7] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operations-grid article[b-etciprtvq7] {
    min-width: 0;
    padding: 1rem 1.1rem;
}

.operations-grid article + article[b-etciprtvq7] {
    border-left: 1px solid var(--line);
}

.operations-grid h2[b-etciprtvq7],
.contract-content h2[b-etciprtvq7] {
    margin: 0.15rem 0 0.8rem;
}

.operations-grid dl[b-etciprtvq7] {
    margin: 0;
}

.operations-grid dl div[b-etciprtvq7] {
    min-height: 2.75rem;
    padding: 0.65rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
}

.operations-grid dd[b-etciprtvq7] {
    margin: 0;
    font-weight: 700;
    text-align: right;
}

.contract-content[b-etciprtvq7] {
    padding: 1rem 1.1rem;
}

.contract-content > p:last-of-type[b-etciprtvq7] {
    max-width: 74rem;
    color: var(--muted-strong);
}

.contract-content > div[b-etciprtvq7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.contract-content a[b-etciprtvq7] {
    min-height: 2.75rem;
}

@media (max-width: 780px) {
    .operations-heading[b-etciprtvq7] {
        align-items: flex-start;
        flex-direction: column;
    }

    .operations-heading button[b-etciprtvq7] {
        width: 100%;
    }

    .operations-kpis[b-etciprtvq7] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .operations-kpis div:nth-child(odd)[b-etciprtvq7] {
        border-left: 0;
    }

    .operations-kpis div:nth-child(n + 3)[b-etciprtvq7] {
        border-top: 1px solid var(--line);
    }

    .operations-grid[b-etciprtvq7] {
        grid-template-columns: 1fr;
    }

    .operations-grid article + article[b-etciprtvq7] {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

@media (max-width: 380px) {
    .operations-kpis[b-etciprtvq7] {
        grid-template-columns: 1fr;
    }

    .operations-kpis div[b-etciprtvq7],
    .operations-kpis div:nth-child(odd)[b-etciprtvq7],
    .operations-kpis div:nth-child(n + 3)[b-etciprtvq7] {
        min-height: 5.5rem;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .operations-kpis div:first-child[b-etciprtvq7] {
        border-top: 0;
    }

    .operations-details > summary[b-etciprtvq7],
    .operations-contract > summary[b-etciprtvq7] {
        align-items: flex-start;
    }
}
/* /Components/Pages/PrepareMonth.razor.rz.scp.css */
.loading-console[b-isw27pnrd4] {
    min-height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted-strong);
    font-size: 0.9375rem;
}

.preparation-heading[b-isw27pnrd4] {
    padding: 0.5rem 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
    align-items: end;
    gap: 2.5rem;
    border-bottom: 1px solid var(--line-strong);
}

.back-link[b-isw27pnrd4],
.quiet-return[b-isw27pnrd4] {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.back-link[b-isw27pnrd4] {
    margin-bottom: 0.75rem;
}

.back-link:hover[b-isw27pnrd4],
.quiet-return:hover[b-isw27pnrd4] {
    color: var(--accent-strong);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.preparation-heading h1[b-isw27pnrd4] {
    margin: 0.3rem 0 0.55rem;
    font-size: clamp(2.25rem, 4.4vw, 4rem);
    letter-spacing: -0.055em;
    line-height: 1;
}

.preparation-heading > div:first-child > p:last-child[b-isw27pnrd4] {
    max-width: 48rem;
    margin: 0;
    color: var(--muted-strong);
    font-size: 1rem;
    line-height: 1.6;
}

.cycle-transfer[b-isw27pnrd4] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.cycle-transfer > div[b-isw27pnrd4] {
    min-width: 0;
    padding: 1rem;
}

.cycle-transfer > div:last-child[b-isw27pnrd4] {
    background: var(--accent-soft);
}

.cycle-transfer span[b-isw27pnrd4],
.cycle-transfer strong[b-isw27pnrd4],
.cycle-transfer small[b-isw27pnrd4] {
    display: block;
}

.cycle-transfer span[b-isw27pnrd4],
.cycle-transfer small[b-isw27pnrd4] {
    color: var(--muted);
    font-size: 0.875rem;
}

.cycle-transfer span[b-isw27pnrd4] {
    font-weight: 750;
}

.cycle-transfer strong[b-isw27pnrd4] {
    margin-top: 0.3rem;
    color: var(--ink-950);
    font-size: 1rem;
    text-transform: capitalize;
}

.cycle-transfer small[b-isw27pnrd4] {
    margin-top: 0.3rem;
}

.cycle-transfer > i[b-isw27pnrd4] {
    display: grid;
    width: 2.75rem;
    place-items: center;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    color: var(--accent-strong);
    font-size: 1.1rem;
    font-style: normal;
}

.form-error[b-isw27pnrd4],
.form-status[b-isw27pnrd4],
.month-date-guide[b-isw27pnrd4] {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    font-size: 0.875rem;
    line-height: 1.55;
}

.form-error[b-isw27pnrd4] {
    border-left: 3px solid var(--danger);
    color: var(--danger);
    background: var(--danger-soft);
}

.form-status[b-isw27pnrd4],
.month-date-guide[b-isw27pnrd4] {
    border-left: 3px solid var(--accent);
    color: var(--ink-900);
    background: color-mix(in srgb, var(--accent-soft) 55%, var(--surface));
}

.month-date-guide[b-isw27pnrd4] {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.month-date-guide strong[b-isw27pnrd4] {
    flex: 0 0 auto;
    color: var(--accent-strong);
}

.month-date-guide span[b-isw27pnrd4] {
    color: var(--muted-strong);
}

.month-review[b-isw27pnrd4] {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.month-review article[b-isw27pnrd4] {
    min-width: 0;
    min-height: 5.75rem;
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
    box-shadow: inset 3px 0 var(--success);
}

.month-review .review-confirm[b-isw27pnrd4] {
    box-shadow: inset 3px 0 var(--signal);
}

.month-review .review-open[b-isw27pnrd4] {
    box-shadow: inset 3px 0 var(--warning);
}

.month-review span[b-isw27pnrd4],
.month-review small[b-isw27pnrd4] {
    color: var(--muted);
    font-size: 0.875rem;
}

.month-review strong[b-isw27pnrd4] {
    margin: 0.2rem 0;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 1.2rem;
}

.month-review > a[b-isw27pnrd4] {
    min-width: 13rem;
    min-height: 2.75rem;
    padding: 0.9rem 1rem;
    display: grid;
    place-items: center;
    color: var(--accent-strong);
    font-size: 0.875rem;
    font-weight: 750;
    text-align: center;
}

.batch-toolbar[b-isw27pnrd4] {
    position: sticky;
    top: 0;
    z-index: 5;
    margin-top: 1.25rem;
    min-height: 4.5rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: color-mix(in srgb, var(--surface-raised) 96%, transparent);
    backdrop-filter: blur(14px);
}

.batch-toolbar > div:first-child strong[b-isw27pnrd4],
.batch-toolbar > div:first-child span[b-isw27pnrd4] {
    display: block;
    font-size: 0.875rem;
}

.batch-toolbar > div:first-child strong[b-isw27pnrd4] {
    color: var(--ink-950);
}

.batch-toolbar > div:first-child span[b-isw27pnrd4] {
    margin-top: 0.2rem;
    color: var(--muted);
}

.batch-toolbar > div:last-child[b-isw27pnrd4] {
    display: flex;
    gap: 0.5rem;
}

.batch-toolbar button[b-isw27pnrd4] {
    min-height: 2.75rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--line-strong);
    color: var(--ink-900);
    background: var(--surface);
    font-size: 0.875rem;
    font-weight: 750;
}

.batch-toolbar button:hover[b-isw27pnrd4] {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.batch-toolbar button:focus-visible[b-isw27pnrd4] {
    outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
    outline-offset: 2px;
}

.preparation-list[b-isw27pnrd4] {
    border-bottom: 1px solid var(--line-strong);
}

.preparation-row[b-isw27pnrd4] {
    display: grid;
    grid-template-columns: minmax(14rem, 1.25fr) minmax(12rem, 1fr) minmax(10rem, 0.85fr) minmax(11rem, 0.9fr) minmax(10rem, 0.8fr);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    transition: background 120ms ease, box-shadow 120ms ease;
}

.preparation-row:last-child[b-isw27pnrd4] {
    border-bottom: 0;
}

.preparation-row.is-selected[b-isw27pnrd4] {
    background: color-mix(in srgb, var(--accent-soft) 35%, var(--surface));
    box-shadow: inset 4px 0 var(--accent);
}

.preparation-row.has-target:not(.is-selected)[b-isw27pnrd4] {
    background: var(--surface-soft);
}

.preparation-row.is-blocked[b-isw27pnrd4] {
    background: color-mix(in srgb, var(--warning) 5%, var(--surface));
    box-shadow: inset 3px 0 var(--warning);
}

.preparation-row.is-blocked .field[b-isw27pnrd4] {
    opacity: 0.62;
}

.row-selector[b-isw27pnrd4],
.origin-cell[b-isw27pnrd4],
.preparation-row > .field[b-isw27pnrd4] {
    min-width: 0;
    padding: 1rem;
    border-right: 1px solid var(--line);
}

.row-selector[b-isw27pnrd4] {
    position: relative;
    min-height: 4.75rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.row-selector[b-isw27pnrd4]  input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.selection-box[b-isw27pnrd4] {
    width: 1.4rem;
    height: 1.4rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line-strong);
    background: var(--surface-raised);
}

.row-selector[b-isw27pnrd4]  input:focus-visible + .selection-box {
    outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
    outline-offset: 2px;
}

.row-selector[b-isw27pnrd4]  input:checked + .selection-box {
    border-color: var(--accent);
    background: var(--accent);
}

.row-selector[b-isw27pnrd4]  input:checked + .selection-box::after {
    width: 0.55rem;
    height: 0.3rem;
    border-bottom: 2px solid var(--chrome);
    border-left: 2px solid var(--chrome);
    content: "";
    transform: rotate(-45deg) translateY(-0.05rem);
}

.creditor-name[b-isw27pnrd4] {
    min-width: 0;
}

.creditor-name strong[b-isw27pnrd4],
.creditor-name small[b-isw27pnrd4] {
    display: block;
}

.creditor-name .agreement-badge[b-isw27pnrd4] {
    width: fit-content;
    margin-top: 0.45rem;
}

.creditor-name strong[b-isw27pnrd4] {
    overflow: hidden;
    color: var(--ink-950);
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.creditor-name small[b-isw27pnrd4] {
    margin-top: 0.25rem;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.875rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.origin-cell span[b-isw27pnrd4],
.origin-cell strong[b-isw27pnrd4],
.origin-cell small[b-isw27pnrd4] {
    display: block;
}

.origin-cell span[b-isw27pnrd4],
.preparation-row .field label[b-isw27pnrd4] {
    margin-bottom: 0.4rem;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 700;
}

.origin-cell strong[b-isw27pnrd4] {
    color: var(--ink-900);
    font-size: 0.875rem;
}

.origin-cell small[b-isw27pnrd4] {
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

.pending-suggestion[b-isw27pnrd4] {
    color: var(--accent-strong) !important;
    font-weight: 700;
}

.planning-block[b-isw27pnrd4] {
    color: var(--warning-strong, var(--warning)) !important;
    font-weight: 700;
}

.preparation-row .field input[b-isw27pnrd4],
.preparation-row .field select[b-isw27pnrd4] {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.25rem;
    color: var(--ink-950);
    background: var(--surface-raised);
    font-size: 0.9375rem;
}

.preparation-row .field input:focus[b-isw27pnrd4],
.preparation-row .field select:focus[b-isw27pnrd4] {
    border-color: var(--accent);
    outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent);
    outline-offset: 1px;
}

.amount-cell > div[b-isw27pnrd4] {
    display: grid;
    grid-template-columns: 1fr auto;
}

.amount-cell > div span[b-isw27pnrd4] {
    width: 2.5rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-left: 0;
    color: var(--muted-strong);
    background: var(--surface-soft);
    font-size: 0.875rem;
}

.row-more[b-isw27pnrd4] {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
}

.row-more summary[b-isw27pnrd4] {
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
}

.row-more summary:focus-visible[b-isw27pnrd4] {
    outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
    outline-offset: -3px;
}

.row-more > div[b-isw27pnrd4] {
    padding: 0 1rem 1rem;
    display: grid;
    grid-template-columns: minmax(9rem, 0.75fr) minmax(9rem, 0.75fr) minmax(15rem, 1.5fr);
    gap: 1rem;
}

.row-more .field[b-isw27pnrd4] {
    min-width: 0;
}

.paid-warning[b-isw27pnrd4] {
    grid-column: 1 / -1;
    min-height: 3rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-top: 1px solid color-mix(in srgb, var(--danger) 35%, var(--line));
    color: var(--danger);
    background: var(--danger-soft);
    font-size: 0.875rem;
    line-height: 1.45;
}

.paid-warning input[b-isw27pnrd4] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    flex: 0 0 auto;
}

.preparation-actions[b-isw27pnrd4] {
    padding: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface-raised);
}

.preparation-actions > div span[b-isw27pnrd4] {
    color: var(--accent-strong);
    font-size: 0.875rem;
    font-weight: 800;
}

.preparation-actions > div p[b-isw27pnrd4] {
    max-width: 48rem;
    margin: 0.25rem 0 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.45;
}

.preparation-actions .button-primary[b-isw27pnrd4] {
    min-height: 3rem;
    min-width: 15rem;
    font-size: 0.9375rem;
}

@media (max-width: 1200px) {
    .preparation-row[b-isw27pnrd4] {
        grid-template-columns: minmax(14rem, 1.2fr) repeat(2, minmax(10rem, 0.8fr));
    }

    .origin-cell[b-isw27pnrd4] {
        grid-column: span 2;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 900px) {
    .preparation-heading[b-isw27pnrd4] {
        grid-template-columns: 1fr;
    }

    .month-review[b-isw27pnrd4] {
        grid-template-columns: repeat(3, 1fr);
    }

    .month-review > a[b-isw27pnrd4] {
        grid-column: span 3;
        border-top: 1px solid var(--line);
    }

    .batch-toolbar[b-isw27pnrd4] {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    .batch-toolbar > div:last-child[b-isw27pnrd4] {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .preparation-row[b-isw27pnrd4] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .row-selector[b-isw27pnrd4],
    .origin-cell[b-isw27pnrd4] {
        grid-column: 1 / -1;
    }

    .row-selector[b-isw27pnrd4],
    .origin-cell[b-isw27pnrd4],
    .preparation-row > .field[b-isw27pnrd4] {
        border-right: 0;
    }

    .origin-cell[b-isw27pnrd4] {
        border-top: 0;
        border-bottom: 1px solid var(--line);
    }

    .preparation-row > .field:nth-of-type(even)[b-isw27pnrd4] {
        border-left: 1px solid var(--line);
    }

    .row-more > div[b-isw27pnrd4] {
        grid-template-columns: 1fr;
    }

    .preparation-actions[b-isw27pnrd4] {
        grid-template-columns: 1fr auto;
    }

    .preparation-actions > div[b-isw27pnrd4] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .preparation-heading h1[b-isw27pnrd4] {
        font-size: 2.35rem;
    }

    .cycle-transfer[b-isw27pnrd4] {
        grid-template-columns: 1fr;
    }

    .cycle-transfer > i[b-isw27pnrd4] {
        width: auto;
        height: 2.25rem;
        border: 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        transform: rotate(90deg);
    }

    .month-date-guide[b-isw27pnrd4] {
        align-items: stretch;
        flex-direction: column;
        gap: 0.25rem;
    }

    .month-review[b-isw27pnrd4] {
        grid-template-columns: 1fr;
    }

    .month-review article[b-isw27pnrd4] {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .month-review > a[b-isw27pnrd4] {
        grid-column: auto;
    }

    .batch-toolbar > div:last-child[b-isw27pnrd4] {
        grid-template-columns: 1fr;
    }

    .preparation-row[b-isw27pnrd4] {
        grid-template-columns: 1fr;
    }

    .row-selector[b-isw27pnrd4],
    .origin-cell[b-isw27pnrd4],
    .preparation-row > .field[b-isw27pnrd4] {
        grid-column: 1;
        border-right: 0;
        border-left: 0 !important;
    }

    .preparation-row > .field[b-isw27pnrd4] {
        border-top: 1px solid var(--line);
    }

    .preparation-actions[b-isw27pnrd4] {
        position: static;
        grid-template-columns: 1fr;
        padding-bottom: 1rem;
        box-shadow: none;
    }

    .preparation-actions > div[b-isw27pnrd4],
    .preparation-actions .quiet-return[b-isw27pnrd4],
    .preparation-actions .button-primary[b-isw27pnrd4] {
        grid-column: 1;
        width: 100%;
    }

    .preparation-actions .button-primary[b-isw27pnrd4] {
        min-height: 3.25rem;
        min-width: 0;
        order: 1;
    }

    .preparation-actions > div[b-isw27pnrd4] {
        order: 2;
    }

    .preparation-actions .quiet-return[b-isw27pnrd4] {
        justify-content: center;
        order: 3;
    }
}
/* /Components/Pages/ScheduleEditor.razor.rz.scp.css */
.editor-heading[b-ldo2642o5q] {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid var(--line-strong);
}

.back-link[b-ldo2642o5q],
.quiet-return[b-ldo2642o5q] {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.back-link[b-ldo2642o5q] {
    margin-bottom: 0.75rem;
}

.back-link:hover[b-ldo2642o5q],
.quiet-return:hover[b-ldo2642o5q] {
    color: var(--accent-strong);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.editor-heading h1[b-ldo2642o5q] {
    margin: 0.2rem 0 0.35rem;
    letter-spacing: -0.045em;
}

.editor-heading p:last-child[b-ldo2642o5q] {
    margin: 0;
    color: var(--muted-strong);
    font-size: 0.9375rem;
}

.paid-readout[b-ldo2642o5q] {
    min-width: 14rem;
    padding: 0.3rem 0 0.3rem 1rem;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--accent);
}

.paid-readout span[b-ldo2642o5q] {
    color: var(--muted);
    font-size: 0.875rem;
}

.paid-readout strong[b-ldo2642o5q] {
    margin-top: 0.2rem;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 1.35rem;
}

.form-error[b-ldo2642o5q] {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid color-mix(in srgb, var(--danger) 42%, var(--line));
    color: var(--danger);
    background: var(--danger-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.live-form-sync[b-ldo2642o5q] {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-left: 3px solid var(--warning);
    color: var(--warning);
    background: var(--warning-soft);
}

.live-form-sync > div[b-ldo2642o5q] {
    display: flex;
    flex-direction: column;
}

.live-form-sync strong[b-ldo2642o5q],
.live-form-sync span[b-ldo2642o5q] {
    font-size: 0.875rem;
    line-height: 1.45;
}

.live-form-sync span[b-ldo2642o5q] {
    color: var(--muted-strong);
}

.live-form-sync button[b-ldo2642o5q] {
    min-height: 2.75rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 800;
}

.live-form-sync.synced[b-ldo2642o5q] {
    justify-content: flex-start;
    border-left-color: var(--success);
    color: var(--success);
    background: var(--success-soft);
}

.editor-workbench[b-ldo2642o5q] {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.65fr);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.editor-main[b-ldo2642o5q],
.editor-control[b-ldo2642o5q] {
    padding: clamp(1.25rem, 3vw, 2.25rem);
}

.editor-control[b-ldo2642o5q] {
    border-left: 1px solid var(--line);
    background: var(--surface-soft);
}

.section-title[b-ldo2642o5q] {
    margin-bottom: 1.5rem;
}

.section-title span[b-ldo2642o5q] {
    color: var(--accent-strong);
    font-size: 0.875rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-title h2[b-ldo2642o5q] {
    margin: 0.3rem 0 0;
}

.amount-field[b-ldo2642o5q] {
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--line);
}

.amount-field > label[b-ldo2642o5q] {
    margin-bottom: 0.45rem;
    display: block;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 750;
}

.amount-field > div[b-ldo2642o5q] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.amount-field[b-ldo2642o5q]  input {
    width: min(100%, 21rem);
    min-height: 3.75rem;
    padding: 0.3rem 0;
    border: 0;
    border-bottom: 2px solid var(--accent);
    border-radius: 0;
    color: var(--ink-950);
    background: transparent;
    font-family: var(--font-mono);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 750;
}

.amount-field[b-ldo2642o5q]  input:focus {
    outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent);
    outline-offset: 3px;
}

.amount-field > div > span[b-ldo2642o5q] {
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.amount-field small[b-ldo2642o5q] {
    max-width: 45rem;
    margin-top: 0.65rem;
    display: block;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.editor-fields[b-ldo2642o5q] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
}

.field[b-ldo2642o5q] {
    margin-bottom: 1rem;
}

.field label[b-ldo2642o5q] {
    margin-bottom: 0.45rem;
    display: block;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 750;
}

.field input[b-ldo2642o5q],
.field select[b-ldo2642o5q],
.field textarea[b-ldo2642o5q] {
    width: 100%;
    min-height: 3rem;
    padding: 0.68rem 0.8rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.35rem;
    color: var(--ink-950);
    background: var(--paper);
    font-size: 1rem;
}

.field textarea[b-ldo2642o5q] {
    min-height: 7rem;
    resize: vertical;
}

.field input:focus[b-ldo2642o5q],
.field select:focus[b-ldo2642o5q],
.field textarea:focus[b-ldo2642o5q] {
    border-color: var(--accent);
    outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent);
    outline-offset: 1px;
}

.field small[b-ldo2642o5q] {
    margin-top: 0.35rem;
    display: block;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.45;
}

.schedule-options[b-ldo2642o5q] {
    margin-top: 0.35rem;
    border-top: 1px solid var(--line);
}

.schedule-options > summary[b-ldo2642o5q] {
    min-height: 3.5rem;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    cursor: pointer;
}

.schedule-options > summary[b-ldo2642o5q]::-webkit-details-marker {
    display: none;
}

.schedule-options > summary[b-ldo2642o5q]::after {
    margin-left: auto;
    color: var(--muted);
    content: "+";
    font-size: 1.35rem;
}

.schedule-options[open] > summary[b-ldo2642o5q]::after {
    content: "−";
}

.schedule-options > summary > span[b-ldo2642o5q] {
    display: flex;
    flex-direction: column;
}

.schedule-options > summary strong[b-ldo2642o5q] {
    color: var(--ink-950);
    font-size: 0.9375rem;
}

.schedule-options > summary small[b-ldo2642o5q] {
    margin-top: 0.15rem;
    color: var(--muted);
    font-size: 0.875rem;
}

.schedule-options > summary:focus-visible[b-ldo2642o5q] {
    outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
    outline-offset: 3px;
}

.schedule-options-content[b-ldo2642o5q] {
    padding-top: 0.75rem;
}

.activation-row[b-ldo2642o5q],
.overpaid-check[b-ldo2642o5q] {
    min-height: 3rem;
    margin-bottom: 1rem;
    padding: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-left: 3px solid var(--accent);
    background: var(--surface);
    cursor: pointer;
}

.activation-row input[b-ldo2642o5q],
.overpaid-check input[b-ldo2642o5q] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.activation-row span[b-ldo2642o5q] {
    display: flex;
    flex-direction: column;
}

.activation-row strong[b-ldo2642o5q],
.activation-row small[b-ldo2642o5q],
.overpaid-check[b-ldo2642o5q] {
    font-size: 0.875rem;
    line-height: 1.45;
}

.activation-row small[b-ldo2642o5q] {
    margin-top: 0.2rem;
    color: var(--muted);
}

.editor-control dl[b-ldo2642o5q] {
    margin: 0 0 1rem;
}

.editor-control dl > div[b-ldo2642o5q] {
    min-height: 3rem;
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.editor-control dt[b-ldo2642o5q] {
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.editor-control dd[b-ldo2642o5q] {
    margin: 0;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-weight: 750;
}

.overpaid-check[b-ldo2642o5q] {
    border-left-color: var(--warning);
    color: var(--warning);
    background: var(--warning-soft);
}

.audit-note[b-ldo2642o5q] {
    margin-top: 1.3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.audit-note span[b-ldo2642o5q] {
    color: var(--accent-strong);
    font-size: 0.875rem;
    font-weight: 750;
}

.audit-note p[b-ldo2642o5q] {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.editor-actions[b-ldo2642o5q] {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface-raised);
}

.editor-actions .button-primary[b-ldo2642o5q] {
    min-width: 14rem;
    min-height: 3rem;
    font-size: 0.9375rem;
}

.empty-editor[b-ldo2642o5q],
.loading[b-ldo2642o5q] {
    padding: 5rem 1rem;
    color: var(--muted);
    font-size: 0.9375rem;
    text-align: center;
}

@media (max-width: 900px) {
    .editor-workbench[b-ldo2642o5q] {
        grid-template-columns: 1fr;
    }

    .editor-control[b-ldo2642o5q] {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

@media (max-width: 650px) {
    .live-form-sync[b-ldo2642o5q] {
        align-items: stretch;
        flex-direction: column;
    }

    .live-form-sync button[b-ldo2642o5q] {
        width: 100%;
    }

    .editor-heading[b-ldo2642o5q] {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .paid-readout[b-ldo2642o5q] {
        width: 100%;
        min-width: 0;
    }

    .editor-fields[b-ldo2642o5q] {
        grid-template-columns: 1fr;
    }

    .editor-actions[b-ldo2642o5q] {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        padding-bottom: 1rem;
        box-shadow: none;
    }

    .editor-actions .button-primary[b-ldo2642o5q] {
        width: 100%;
        min-height: 3.25rem;
        order: 1;
    }

    .editor-actions .quiet-return[b-ldo2642o5q] {
        justify-content: center;
        order: 2;
    }
}
.schedule-blocked[b-ldo2642o5q] {
    margin: 1rem 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-left: 3px solid var(--warning);
    background: color-mix(in srgb, var(--warning) 8%, var(--surface));
}

.schedule-blocked strong[b-ldo2642o5q],
.schedule-blocked span[b-ldo2642o5q] {
    display: block;
}

.schedule-blocked span[b-ldo2642o5q] {
    margin-top: 0.25rem;
    color: var(--muted-strong);
    font-size: 0.875rem;
}

.schedule-editor-fieldset[b-ldo2642o5q] {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.schedule-editor-fieldset:disabled[b-ldo2642o5q] {
    opacity: 0.62;
}
/* /Components/Pages/Security.razor.rz.scp.css */
.security-heading[b-4ts1r6uzm4] {
    max-width: 64rem;
    margin-bottom: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line-strong);
}

.security-heading h1[b-4ts1r6uzm4] {
    max-width: 58rem;
}

.security-heading p:last-child[b-4ts1r6uzm4] {
    max-width: 54rem;
    margin-bottom: 0;
    color: var(--muted-strong);
}

.security-grid[b-4ts1r6uzm4] {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.security-grid[b-4ts1r6uzm4]  .checklist-panel,
.security-panel[b-4ts1r6uzm4],
.privacy-panel[b-4ts1r6uzm4] {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.security-grid[b-4ts1r6uzm4]  .checklist-panel {
    padding: 1rem 1.1rem;
    color: var(--ink-900);
    border-left: 3px solid var(--success);
    background: var(--surface);
}

.security-grid[b-4ts1r6uzm4]  .checklist-panel > div {
    margin-bottom: 0.85rem;
}

.security-grid[b-4ts1r6uzm4]  .checklist-panel small,
.security-grid[b-4ts1r6uzm4]  .checklist-panel li {
    font-size: 0.8125rem;
    line-height: 1.45;
}

.security-grid[b-4ts1r6uzm4]  .checklist-panel li {
    color: var(--muted-strong);
}

.security-grid[b-4ts1r6uzm4]  .checklist-panel li strong {
    color: var(--danger);
}

.security-panel[b-4ts1r6uzm4] {
    min-width: 0;
}

.security-panel > summary[b-4ts1r6uzm4],
.privacy-panel > summary[b-4ts1r6uzm4] {
    min-height: 4.75rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
}

.security-panel > summary[b-4ts1r6uzm4]::-webkit-details-marker,
.privacy-panel > summary[b-4ts1r6uzm4]::-webkit-details-marker {
    display: none;
}

.security-panel > summary > span:first-child[b-4ts1r6uzm4] {
    display: grid;
    gap: 0.2rem;
}

.security-panel summary small[b-4ts1r6uzm4] {
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.summary-action[b-4ts1r6uzm4] {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 750;
}

.security-panel[open] > summary[b-4ts1r6uzm4],
.privacy-panel[open] > summary[b-4ts1r6uzm4] {
    border-bottom: 1px solid var(--line);
}

.security-panel[open] .summary-action[b-4ts1r6uzm4],
.privacy-panel[open] .summary-action[b-4ts1r6uzm4] {
    font-size: 0;
}

.security-panel[open] .summary-action[b-4ts1r6uzm4]::after,
.privacy-panel[open] .summary-action[b-4ts1r6uzm4]::after {
    content: "Masquer";
    font-size: 0.875rem;
}

.security-panel-content[b-4ts1r6uzm4] {
    padding: 0.25rem 1rem 1rem;
}

.security-panel ol[b-4ts1r6uzm4] {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: verification-step;
}

.security-panel li[b-4ts1r6uzm4] {
    min-height: 3rem;
    padding: 0.7rem 0;
    display: grid;
    grid-template-columns: 1.75rem minmax(0, 1fr);
    align-items: start;
    gap: 0.65rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.875rem;
    counter-increment: verification-step;
}

.security-panel li[b-4ts1r6uzm4]::before {
    content: counter(verification-step, decimal-leading-zero);
    color: var(--accent);
    font: 700 0.8125rem var(--font-mono);
}

.stop-note[b-4ts1r6uzm4] {
    margin-top: 0.9rem;
    padding: 0.8rem;
    display: grid;
    gap: 0.2rem;
    border-left: 3px solid var(--danger);
    border-radius: var(--radius-small);
    color: var(--danger);
    background: var(--danger-soft);
}

.stop-note span[b-4ts1r6uzm4] {
    font-size: 0.8125rem;
    line-height: 1.4;
}

.privacy-panel[b-4ts1r6uzm4] {
    margin-bottom: 1rem;
}

.privacy-panel > summary[b-4ts1r6uzm4] {
    justify-content: flex-start;
}

.privacy-panel > summary > div[b-4ts1r6uzm4] {
    min-width: 0;
    flex: 1;
}

.privacy-panel h2[b-4ts1r6uzm4] {
    margin: 0;
    font-size: 1.05rem;
}

.privacy-panel .eyebrow[b-4ts1r6uzm4] {
    margin-bottom: 0.18rem;
}

.privacy-icon[b-4ts1r6uzm4] {
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: var(--radius-small);
    color: var(--success);
    background: var(--success-soft);
    font-weight: 900;
}

.privacy-panel ul[b-4ts1r6uzm4] {
    margin: 0;
    padding: 0.25rem 1rem 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
}

.privacy-panel li[b-4ts1r6uzm4] {
    min-height: 3.5rem;
    padding: 0.75rem;
    border-top: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.privacy-panel li:nth-child(even)[b-4ts1r6uzm4] {
    border-left: 1px solid var(--line);
}

@media (max-width: 760px) {
    .security-grid[b-4ts1r6uzm4],
    .privacy-panel ul[b-4ts1r6uzm4] {
        grid-template-columns: 1fr;
    }

    .privacy-panel li:nth-child(even)[b-4ts1r6uzm4] {
        border-left: 0;
    }

    .security-panel > summary[b-4ts1r6uzm4],
    .privacy-panel > summary[b-4ts1r6uzm4] {
        align-items: flex-start;
    }

    .security-panel > summary[b-4ts1r6uzm4] {
        min-height: 5.25rem;
    }
}

@media (max-width: 380px) {
    .security-panel > summary[b-4ts1r6uzm4],
    .privacy-panel > summary[b-4ts1r6uzm4] {
        padding-right: 0.85rem;
        padding-left: 0.85rem;
    }

    .privacy-panel > summary[b-4ts1r6uzm4] {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .privacy-panel > summary .summary-action[b-4ts1r6uzm4] {
        grid-column: 2;
    }
}
/* /Components/Pages/SecuritySettings.razor.rz.scp.css */
.page-heading[b-mv2dwmakx8],
.panel-heading[b-mv2dwmakx8] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}

.page-heading[b-mv2dwmakx8] {
    margin-bottom: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line-strong);
}

.page-heading h1[b-mv2dwmakx8],
.panel-heading h2[b-mv2dwmakx8],
.security-card h2[b-mv2dwmakx8] {
    margin: 0.2rem 0 0.35rem;
}

.page-heading p[b-mv2dwmakx8],
.security-card p[b-mv2dwmakx8] {
    max-width: 52rem;
    margin-bottom: 0;
    color: var(--muted-strong);
}

.page-heading .button-secondary[b-mv2dwmakx8],
.panel-heading button[b-mv2dwmakx8] {
    min-height: 2.75rem;
    flex: 0 0 auto;
}

.security-grid[b-mv2dwmakx8] {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.security-card[b-mv2dwmakx8] {
    min-width: 0;
    padding: 1rem 1.1rem;
}

.security-card + .security-card[b-mv2dwmakx8] {
    border-left: 1px solid var(--line);
}

.status-badge[b-mv2dwmakx8] {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    color: var(--success);
    background: var(--success-soft);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.audit-panel[b-mv2dwmakx8] {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.audit-disclosure[b-mv2dwmakx8] {
    margin-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.audit-disclosure > summary[b-mv2dwmakx8] {
    min-height: 2.75rem;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    color: var(--accent);
    cursor: pointer;
    font-weight: 750;
}

.table-scroll[b-mv2dwmakx8] {
    overflow-x: auto;
}

table[b-mv2dwmakx8] {
    width: 100%;
    border-collapse: collapse;
}

th[b-mv2dwmakx8],
td[b-mv2dwmakx8] {
    padding: 0.75rem;
    border-top: 1px solid var(--line);
    text-align: left;
    white-space: nowrap;
}

th[b-mv2dwmakx8] {
    color: var(--muted);
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

td code[b-mv2dwmakx8] {
    font-size: 0.8125rem;
}

.empty-state[b-mv2dwmakx8] {
    margin: 1rem 0 0;
    color: var(--muted);
}

@media (max-width: 760px) {
    .page-heading[b-mv2dwmakx8],
    .panel-heading[b-mv2dwmakx8] {
        flex-direction: column;
    }

    .page-heading .button-secondary[b-mv2dwmakx8],
    .panel-heading button[b-mv2dwmakx8] {
        width: 100%;
    }

    .security-grid[b-mv2dwmakx8] {
        grid-template-columns: 1fr;
    }

    .security-card + .security-card[b-mv2dwmakx8] {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .table-scroll[b-mv2dwmakx8] {
        overflow: visible;
    }

    table[b-mv2dwmakx8],
    tbody[b-mv2dwmakx8],
    tr[b-mv2dwmakx8],
    td[b-mv2dwmakx8] {
        display: block;
        width: 100%;
    }

    thead[b-mv2dwmakx8] {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    tr[b-mv2dwmakx8] {
        padding: 0.65rem 0;
        border-top: 1px solid var(--line);
    }

    td[b-mv2dwmakx8] {
        min-height: 2rem;
        padding: 0.2rem 0;
        display: grid;
        grid-template-columns: 6.5rem minmax(0, 1fr);
        gap: 0.65rem;
        border-top: 0;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    td[b-mv2dwmakx8]::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 0.8125rem;
        font-weight: 700;
    }
}

@media (max-width: 380px) {
    .audit-panel[b-mv2dwmakx8],
    .security-card[b-mv2dwmakx8] {
        padding-right: 0.9rem;
        padding-left: 0.9rem;
    }

    td[b-mv2dwmakx8] {
        grid-template-columns: 1fr;
        gap: 0.1rem;
    }
}
/* /Components/Pages/Simulator.razor.rz.scp.css */
.simulator-heading[b-hjc5bb79xv] {
    max-width: 60rem;
    margin-bottom: 1.25rem;
}

.simulator-heading h1[b-hjc5bb79xv] {
    margin-bottom: 0.35rem;
}

.simulator-heading p:last-child[b-hjc5bb79xv] {
    margin: 0;
    color: var(--muted-strong);
}

.simulation-layout[b-hjc5bb79xv] {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: minmax(17rem, 22rem) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

.input-panel[b-hjc5bb79xv] {
    padding: 1.15rem;
    border-right: 1px solid var(--line-strong);
    background: var(--surface-soft);
}

.input-panel h2[b-hjc5bb79xv] {
    margin-bottom: 1.1rem;
}

.input-panel label[b-hjc5bb79xv] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.input-panel label > span[b-hjc5bb79xv] {
    color: var(--ink-900);
    font-size: 0.85rem;
    font-weight: 700;
}

.input-panel input[b-hjc5bb79xv] {
    width: 100%;
    min-height: 3rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    color: var(--ink-950);
    background: var(--surface-raised);
    font-family: var(--font-mono);
    font-size: 1rem;
}

.input-panel small[b-hjc5bb79xv],
.advice-content > small[b-hjc5bb79xv] {
    color: var(--muted-strong);
    font-size: 0.78rem;
}

.input-panel .button-primary[b-hjc5bb79xv] {
    width: 100%;
}

.simulation-error[b-hjc5bb79xv] {
    margin: 0.8rem 0 0;
    padding: 0.7rem;
    border-radius: var(--radius-small);
    color: var(--danger);
    background: var(--danger-soft);
}

.result-panel[b-hjc5bb79xv] {
    min-width: 0;
    padding: 1.15rem;
}

.result-kpis[b-hjc5bb79xv] {
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
}

.result-kpis article[b-hjc5bb79xv] {
    min-width: 0;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-left: 1px solid var(--line);
}

.result-kpis article:first-child[b-hjc5bb79xv] {
    border-left: 0;
}

.result-kpis span[b-hjc5bb79xv] {
    color: var(--muted-strong);
    font-size: 0.75rem;
    font-weight: 650;
}

.result-kpis strong[b-hjc5bb79xv] {
    overflow: hidden;
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 1.05rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-kpis .negative strong[b-hjc5bb79xv] {
    color: var(--danger);
}

.projection-chart header[b-hjc5bb79xv] {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.projection-chart h2[b-hjc5bb79xv] {
    margin: 0;
}

.projection-chart header > strong[b-hjc5bb79xv] {
    color: var(--ink-950);
    font-family: var(--font-mono);
}

.bars[b-hjc5bb79xv] {
    display: grid;
    gap: 0.45rem;
}

.bar-row[b-hjc5bb79xv] {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr) 7rem;
    align-items: center;
    gap: 0.65rem;
}

.bar-row > span[b-hjc5bb79xv] {
    color: var(--muted-strong);
    font-size: 0.75rem;
    text-transform: capitalize;
}

.bar-row > div[b-hjc5bb79xv] {
    height: 0.6rem;
    overflow: hidden;
    border-radius: 99rem;
    background: var(--surface-soft);
}

.bar-row i[b-hjc5bb79xv] {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--accent);
}

.bar-row strong[b-hjc5bb79xv] {
    color: var(--muted-strong);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    text-align: right;
}

.chart-note[b-hjc5bb79xv] {
    margin-top: 0.75rem;
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.advice-panel[b-hjc5bb79xv] {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.advice-panel > summary[b-hjc5bb79xv] {
    min-height: 4.25rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
}

.advice-panel > summary[b-hjc5bb79xv]::-webkit-details-marker {
    display: none;
}

.advice-panel > summary:hover[b-hjc5bb79xv] {
    background: var(--surface-hover);
}

.advice-panel > summary > span:first-child[b-hjc5bb79xv] {
    display: flex;
    flex-direction: column;
}

.advice-panel > summary strong[b-hjc5bb79xv] {
    color: var(--ink-950);
}

.advice-panel > summary small[b-hjc5bb79xv] {
    color: var(--muted-strong);
}

.advice-panel > summary > span:last-child[b-hjc5bb79xv] {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
}

.advice-panel[open] > summary[b-hjc5bb79xv] {
    border-bottom: 1px solid var(--line);
}

.advice-panel[open] > summary > span:last-child[b-hjc5bb79xv] {
    font-size: 0;
}

.advice-panel[open] > summary > span:last-child[b-hjc5bb79xv]::after {
    font-size: 0.8rem;
    content: "Masquer";
}

.advice-content[b-hjc5bb79xv] {
    padding: 1rem;
}

.advice-content > div[b-hjc5bb79xv] {
    margin-bottom: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advice-content article[b-hjc5bb79xv] {
    padding: 0 1rem;
    border-left: 1px solid var(--line);
}

.advice-content article:first-child[b-hjc5bb79xv] {
    padding-left: 0;
    border-left: 0;
}

.advice-content article strong[b-hjc5bb79xv] {
    color: var(--ink-950);
}

.advice-content article p[b-hjc5bb79xv] {
    margin: 0.35rem 0 0;
    color: var(--muted-strong);
    font-size: 0.82rem;
}

@media (max-width: 860px) {
    .simulation-layout[b-hjc5bb79xv] {
        grid-template-columns: 1fr;
    }

    .input-panel[b-hjc5bb79xv] {
        border-right: 0;
        border-bottom: 1px solid var(--line-strong);
    }
}

@media (max-width: 620px) {
    .simulator-heading p:last-child[b-hjc5bb79xv] {
        display: none;
    }

    .simulation-layout[b-hjc5bb79xv] {
        border-radius: var(--radius-small);
    }

    .input-panel[b-hjc5bb79xv],
    .result-panel[b-hjc5bb79xv] {
        padding: 0.9rem;
    }

    .result-kpis[b-hjc5bb79xv] {
        grid-template-columns: 1fr 1fr;
    }

    .result-kpis article:last-child[b-hjc5bb79xv] {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .bar-row[b-hjc5bb79xv] {
        grid-template-columns: 3.2rem minmax(0, 1fr);
    }

    .bar-row strong[b-hjc5bb79xv] {
        display: none;
    }

    .advice-content > div[b-hjc5bb79xv] {
        grid-template-columns: 1fr;
    }

    .advice-content article[b-hjc5bb79xv] {
        padding: 0.75rem 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .advice-content article:first-child[b-hjc5bb79xv] {
        padding-top: 0;
        border-top: 0;
    }
}
/* /Components/Pages/UpdateDebt.razor.rz.scp.css */
.update-heading[b-urd544sp5v] {
    max-width: 58rem;
    margin-bottom: 1.5rem;
}

.back-link[b-urd544sp5v],
.quiet-return[b-urd544sp5v] {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

.back-link[b-urd544sp5v] {
    margin-bottom: 0.75rem;
}

.back-link:hover[b-urd544sp5v],
.quiet-return:hover[b-urd544sp5v] {
    color: var(--accent-strong);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.update-heading h1[b-urd544sp5v] {
    margin: 0.25rem 0 0.55rem;
    letter-spacing: -0.045em;
}

.update-heading p:last-child[b-urd544sp5v] {
    margin: 0;
    color: var(--muted-strong);
    font-size: 1rem;
    line-height: 1.6;
}

.call-context[b-urd544sp5v] {
    position: sticky;
    top: 4.5rem;
    z-index: 5;
    margin-bottom: 1.25rem;
    display: grid;
    grid-template-columns: minmax(10rem, 1fr) minmax(25rem, 2.5fr) minmax(13rem, 1.2fr) auto;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: color-mix(in srgb, var(--surface-raised) 96%, transparent);
    backdrop-filter: blur(14px);
}

.call-identity[b-urd544sp5v],
.call-next[b-urd544sp5v],
.call-actions[b-urd544sp5v] {
    min-width: 0;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.call-facts[b-urd544sp5v] {
    min-width: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 1px solid var(--line);
}

.call-facts > div[b-urd544sp5v] {
    min-width: 0;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
}

.call-facts > div:last-child[b-urd544sp5v],
.call-actions[b-urd544sp5v] {
    border-right: 0;
}

.call-context span[b-urd544sp5v],
.call-context dt[b-urd544sp5v] {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 700;
}

.call-context strong[b-urd544sp5v],
.call-context dd[b-urd544sp5v] {
    margin: 0.15rem 0 0;
    overflow-wrap: anywhere;
    color: var(--ink-950);
    font-size: 0.9375rem;
    font-weight: 750;
}

.call-context small[b-urd544sp5v],
.call-context .fact-note[b-urd544sp5v] {
    margin-top: 0.2rem;
    overflow-wrap: anywhere;
    color: var(--muted-strong);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.35;
}

.call-actions[b-urd544sp5v] {
    gap: 0.5rem;
}

.call-actions .button-secondary[b-urd544sp5v] {
    min-height: 2.75rem;
    min-width: 8.5rem;
    font-size: 0.875rem;
}

.update-flow[b-urd544sp5v] {
    max-width: 74rem;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface);
}

.form-panel[b-urd544sp5v] {
    padding: clamp(1.25rem, 3vw, 2.25rem);
}

.section-head[b-urd544sp5v] {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.section-head > span[b-urd544sp5v],
.summary-index[b-urd544sp5v] {
    width: 2rem;
    height: 2rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
    color: var(--accent-strong);
    background: var(--accent-soft);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 800;
}

.section-head h2[b-urd544sp5v] {
    margin: 0;
}

.section-head p[b-urd544sp5v] {
    margin: 0.25rem 0 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.5;
}

.two-columns[b-urd544sp5v] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
}

.compact-fields[b-urd544sp5v] {
    max-width: 34rem;
}

.field[b-urd544sp5v] {
    margin-bottom: 1rem;
}

.field label[b-urd544sp5v] {
    margin-bottom: 0.45rem;
    display: block;
    color: var(--ink-900);
    font-size: 0.875rem;
    font-weight: 750;
}

.field input[b-urd544sp5v],
.field select[b-urd544sp5v],
.field textarea[b-urd544sp5v] {
    width: 100%;
    min-height: 3rem;
    padding: 0.68rem 0.8rem;
    border: 1px solid var(--line-strong);
    border-radius: 0.35rem;
    color: var(--ink-950);
    background: var(--paper);
    font-size: 1rem;
}

.field textarea[b-urd544sp5v] {
    min-height: 6.25rem;
    resize: vertical;
}

.key-field textarea[b-urd544sp5v] {
    min-height: 8rem;
}

.field input:focus[b-urd544sp5v],
.field select:focus[b-urd544sp5v],
.field textarea:focus[b-urd544sp5v] {
    border-color: var(--accent);
    outline: 3px solid color-mix(in srgb, var(--accent) 20%, transparent);
    outline-offset: 1px;
}

.balance-details[b-urd544sp5v] {
    border-top: 1px solid var(--line);
}

.balance-details > summary[b-urd544sp5v] {
    min-height: 4.75rem;
    padding: 1rem clamp(1.25rem, 3vw, 2.25rem);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    list-style: none;
    cursor: pointer;
}

.balance-details > summary[b-urd544sp5v]::-webkit-details-marker {
    display: none;
}

.balance-details > summary[b-urd544sp5v]::after {
    color: var(--muted);
    content: "+";
    font-size: 1.35rem;
}

.balance-details[open] > summary[b-urd544sp5v]::after {
    content: "−";
}

.balance-details > summary:focus-visible[b-urd544sp5v] {
    outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
    outline-offset: -3px;
}

.summary-copy[b-urd544sp5v] {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.summary-copy strong[b-urd544sp5v] {
    color: var(--ink-950);
    font-size: 1rem;
}

.summary-copy small[b-urd544sp5v] {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.4;
}

.current-balance[b-urd544sp5v] {
    min-width: 9rem;
    display: flex;
    flex-direction: column;
    text-align: right;
}

.current-balance small[b-urd544sp5v] {
    color: var(--muted);
    font-size: 0.875rem;
}

.current-balance strong[b-urd544sp5v] {
    color: var(--ink-950);
    font-family: var(--font-mono);
    font-size: 1.1rem;
}

.balance-content[b-urd544sp5v] {
    padding: 0 clamp(1.25rem, 3vw, 2.25rem) 1.75rem;
}

.check-row[b-urd544sp5v] {
    min-height: 2.75rem;
    margin-bottom: 0.75rem;
    padding: 0.7rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.45;
    cursor: pointer;
}

.check-row input[b-urd544sp5v] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.check-row span[b-urd544sp5v] {
    display: flex;
    flex-direction: column;
}

.check-row.required[b-urd544sp5v] {
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--warning);
    background: var(--warning-soft);
}

.balance-impact[b-urd544sp5v] {
    margin-bottom: 0.8rem;
    padding: 0.9rem 1rem;
    border-left: 3px solid var(--success);
    background: var(--success-soft);
    font-size: 0.875rem;
}

.balance-impact p[b-urd544sp5v],
.balance-kept[b-urd544sp5v] {
    margin: 0.3rem 0 0;
    color: var(--muted-strong);
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-actions[b-urd544sp5v] {
    max-width: 74rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    border-bottom: 1px solid var(--line-strong);
    background: var(--surface-raised);
}

.form-actions .button-primary[b-urd544sp5v] {
    min-width: 14rem;
    min-height: 3rem;
    font-size: 0.9375rem;
}

.form-error[b-urd544sp5v] {
    max-width: 74rem;
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid color-mix(in srgb, var(--danger) 42%, var(--line));
    color: var(--danger);
    background: var(--danger-soft);
    font-size: 0.875rem;
    line-height: 1.5;
}

.not-found[b-urd544sp5v] {
    padding: 4rem 1rem;
    text-align: center;
}

@media (max-width: 1100px) {
    .call-context[b-urd544sp5v] {
        position: static;
        grid-template-columns: minmax(11rem, 0.8fr) minmax(24rem, 2.2fr);
    }

    .call-facts[b-urd544sp5v] {
        border-right: 0;
    }

    .call-next[b-urd544sp5v] {
        border-top: 1px solid var(--line);
    }

    .call-actions[b-urd544sp5v] {
        flex-direction: row;
        align-items: center;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 700px) {
    .call-context[b-urd544sp5v] {
        grid-template-columns: 1fr;
    }

    .call-identity[b-urd544sp5v],
    .call-next[b-urd544sp5v],
    .call-actions[b-urd544sp5v],
    .call-facts[b-urd544sp5v] {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .call-facts[b-urd544sp5v] {
        grid-template-columns: 1fr;
    }

    .call-facts > div[b-urd544sp5v] {
        min-height: 4.25rem;
        padding-block: 0.65rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .call-facts > div:last-child[b-urd544sp5v],
    .call-actions[b-urd544sp5v] {
        border-bottom: 0;
    }

    .call-actions[b-urd544sp5v] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .call-actions .button-secondary[b-urd544sp5v] {
        min-width: 0;
    }

    .two-columns[b-urd544sp5v] {
        grid-template-columns: 1fr;
    }

    .balance-details > summary[b-urd544sp5v] {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .summary-copy[b-urd544sp5v] {
        flex-basis: calc(100% - 4rem);
    }

    .current-balance[b-urd544sp5v] {
        margin-left: 2.9rem;
        flex: 1;
        text-align: left;
    }

    .form-actions[b-urd544sp5v] {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        padding-bottom: 1rem;
        box-shadow: none;
    }

    .form-actions .button-primary[b-urd544sp5v] {
        width: 100%;
        min-height: 3.25rem;
        order: 1;
    }

    .form-actions .quiet-return[b-urd544sp5v] {
        justify-content: center;
        order: 2;
    }
}
/* /Components/Shared/AntiScamChecklist.razor.rz.scp.css */
.checklist-panel[b-sxzhwarqsl] {
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--success) 35%, var(--line));
    border-radius: 0.75rem;
    color: var(--success);
    background: var(--success-soft);
}

.checklist-panel > div[b-sxzhwarqsl] {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.shield[b-sxzhwarqsl] {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 0.55rem;
    color: #fff;
    background: var(--success);
    font-weight: 900;
}

.checklist-panel > div > div[b-sxzhwarqsl] {
    display: flex;
    flex-direction: column;
}

.checklist-panel small[b-sxzhwarqsl] {
    color: var(--muted-strong);
    font-size: 0.68rem;
}

.checklist-panel ul[b-sxzhwarqsl] {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 1.5rem;
    font-size: 0.73rem;
}

@media (max-width: 650px) {
    .checklist-panel ul[b-sxzhwarqsl] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/PaymentStatusBadge.razor.rz.scp.css */
.payment-badge[b-swtlpgzw0e] {
    padding: 0.25rem 0.48rem;
    display: inline-flex;
    align-items: center;
    border-radius: 99rem;
    font-size: 0.64rem;
    font-weight: 800;
    white-space: nowrap;
}

.confirmed[b-swtlpgzw0e] {
    color: var(--success);
    background: var(--success-soft);
}

.sent[b-swtlpgzw0e] {
    color: var(--info);
    background: var(--info-soft);
}

.planned[b-swtlpgzw0e] {
    color: var(--warning);
    background: var(--warning-soft);
}

.rejected[b-swtlpgzw0e],
.cancelled[b-swtlpgzw0e] {
    color: var(--danger);
    background: var(--danger-soft);
}

.cancelled[b-swtlpgzw0e] {
    text-decoration: line-through;
}
/* /Components/Shared/UiIcon.razor.rz.scp.css */
.ui-icon[b-7zsard1a66] {
    width: 1em;
    height: 1em;
    display: block;
    flex: 0 0 auto;
    overflow: visible;
}
