/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-mfa5ddbz08] {
    color-scheme: light only;
    background: lightyellow;
    top: 0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.admin-header[b-mfa5ddbz08] {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 2rem;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    color: #fff;
    background: #11213f;
    box-shadow: 0 .35rem 1.5rem rgb(17 33 63 / 24%);
}

.brand[b-mfa5ddbz08] { display: flex; flex: 0 0 auto; align-items: center; gap: .7rem; color: #fff; font-weight: 900; text-decoration: none; }
.brand img[b-mfa5ddbz08] { display: block; width: 3.1rem; height: 3.1rem; border: 2px solid rgb(255 255 255 / 82%); border-radius: .75rem; object-fit: contain; box-shadow: 0 .35rem 1rem rgb(0 0 0 / 18%); }
.brand span[b-mfa5ddbz08] { font-size: 1.05rem; }
.admin-header nav[b-mfa5ddbz08] { display: flex; align-items: center; gap: 1rem; }
.admin-header nav a[b-mfa5ddbz08] { color: #fff; font-weight: 700; text-decoration: none; }
.account-actions[b-mfa5ddbz08] { display: flex; min-width: 0; flex: 0 1 auto; align-items: center; gap: .75rem; }
.account-actions span[b-mfa5ddbz08] {
    max-width: 14rem;
    overflow: hidden;
    color: rgb(255 255 255 / 84%);
    font-size: .82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.admin-header button[b-mfa5ddbz08] {
    padding: 0.5rem 0.8rem;
    border: 1px solid rgb(255 255 255 / 58%);
    border-radius: 0.55rem;
    color: #fff;
    background: rgb(255 255 255 / 8%);
    cursor: pointer;
}

@media (max-width: 48rem) {
    .admin-header[b-mfa5ddbz08] {
        min-height: 4rem;
        align-items: center;
        flex-wrap: nowrap;
        padding: .65rem .8rem;
    }
    .brand img[b-mfa5ddbz08] { width: 2.65rem; height: 2.65rem; }
    .brand span[b-mfa5ddbz08] { display: none; }
    .account-actions[b-mfa5ddbz08] { margin-inline-start: auto; gap: .45rem; }
    .account-actions span[b-mfa5ddbz08] { max-width: 8.5rem; font-size: .72rem; }
    .admin-header button[b-mfa5ddbz08] { padding: .45rem .6rem; font-size: .75rem; }
}

    #blazor-error-ui .dismiss[b-mfa5ddbz08] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-znb5qdjwe7],
.components-reconnect-repeated-attempt-visible[b-znb5qdjwe7],
.components-reconnect-failed-visible[b-znb5qdjwe7],
.components-pause-visible[b-znb5qdjwe7],
.components-resume-failed-visible[b-znb5qdjwe7],
.components-rejoining-animation[b-znb5qdjwe7] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-znb5qdjwe7],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-znb5qdjwe7],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-znb5qdjwe7],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-znb5qdjwe7],
#components-reconnect-modal.components-reconnect-retrying[b-znb5qdjwe7],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-znb5qdjwe7],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-znb5qdjwe7],
#components-reconnect-modal.components-reconnect-failed[b-znb5qdjwe7],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-znb5qdjwe7] {
    display: block;
}


#components-reconnect-modal[b-znb5qdjwe7] {
    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-znb5qdjwe7 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-znb5qdjwe7 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-znb5qdjwe7 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-znb5qdjwe7]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-znb5qdjwe7 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-znb5qdjwe7 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-znb5qdjwe7 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-znb5qdjwe7 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-znb5qdjwe7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-znb5qdjwe7] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-znb5qdjwe7] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-znb5qdjwe7] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-znb5qdjwe7] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-znb5qdjwe7] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-znb5qdjwe7] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-znb5qdjwe7 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-znb5qdjwe7] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-znb5qdjwe7 {
    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/CommissionReports.razor.rz.scp.css */
.commission-report-page[b-q421j39n03] { max-width: 1280px; margin: 0 auto; padding: 2rem; }
.page-heading span[b-q421j39n03] { color: #17695b; font-weight: 700; }.page-heading h1[b-q421j39n03] { margin: .25rem 0; }
.filters-card[b-q421j39n03] { display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)) auto; gap: 1rem; align-items: end; margin-top: 1.5rem; padding: 1rem; background: #fff; border: 1px solid #dce5e2; border-radius: 14px; }
.filters-card label[b-q421j39n03] { display: grid; gap: .35rem; font-weight: 650; }.filters-card input[b-q421j39n03] { padding: .65rem; border: 1px solid #b9c8c3; border-radius: 8px; }
.totals-grid[b-q421j39n03] { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.totals-grid article[b-q421j39n03], .grid-card[b-q421j39n03] { padding: 1.1rem; background: #fff; border: 1px solid #dce5e2; border-radius: 14px; }
.totals-grid header[b-q421j39n03] { display: flex; justify-content: space-between; align-items: center; }.totals-grid h2[b-q421j39n03] { margin: 0; }
.totals-grid dl[b-q421j39n03] { display: grid; gap: .55rem; }.totals-grid dl div[b-q421j39n03] { display: flex; justify-content: space-between; gap: .75rem; }.totals-grid dd[b-q421j39n03] { margin: 0; font-weight: 750; }
.grid-card[b-q421j39n03] { margin-top: 1.25rem; }.status-message[b-q421j39n03] { margin-top: 1rem; padding: .8rem; background: #e8f7f1; border-radius: 9px; }.status-message.error[b-q421j39n03] { background: #fff0ed; color: #8c2e22; }
@media (max-width: 800px) { .commission-report-page[b-q421j39n03] { padding: 1rem; }.filters-card[b-q421j39n03] { grid-template-columns: 1fr; } }
/* /Components/Pages/Home.razor.rz.scp.css */
.admin-home[b-65rgksbdw6] {
    width: min(100% - 2rem, 76rem);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.home-heading[b-65rgksbdw6] {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.home-heading span[b-65rgksbdw6],
.signed-out > span[b-65rgksbdw6] {
    color: #0755e9;
    font-size: .9rem;
    font-weight: 800;
}

.home-heading h1[b-65rgksbdw6],
.signed-out h1[b-65rgksbdw6] {
    margin: .45rem 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.home-heading p[b-65rgksbdw6],
.signed-out p[b-65rgksbdw6] {
    max-width: 48rem;
    margin: 0;
    color: #5b6b82;
    line-height: 1.8;
}

.dashboard-link[b-65rgksbdw6],
.primary-link[b-65rgksbdw6] {
    flex: 0 0 auto;
    padding: .8rem 1.1rem;
    border-radius: .75rem;
    color: #fff;
    background: #0755e9;
    text-decoration: none;
    font-weight: 800;
}

.quick-summary[b-65rgksbdw6] {
    display: grid;
    grid-template-columns: minmax(9rem, .35fr) minmax(16rem, 1fr);
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.quick-summary div[b-65rgksbdw6] {
    display: grid;
    gap: .2rem;
    padding: .85rem 1rem;
    border: 1px solid #dfe7f5;
    border-radius: .8rem;
    background: rgb(255 255 255 / 75%);
}

.quick-summary strong[b-65rgksbdw6] {
    overflow: hidden;
    color: #17345f;
    text-overflow: ellipsis;
}

.quick-summary span[b-65rgksbdw6] {
    color: #718096;
    font-size: .8rem;
}

.navigation-grid[b-65rgksbdw6] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.navigation-card[b-65rgksbdw6] {
    --accent: #0755e9;
    display: flex;
    min-height: 15.5rem;
    padding: 1.25rem;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #dfe7f5;
    border-top: .3rem solid var(--accent);
    border-radius: 1rem;
    color: #11213f;
    background: #fff;
    box-shadow: 0 .75rem 2rem rgb(24 48 86 / 6%);
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.navigation-card:hover[b-65rgksbdw6],
.navigation-card:focus-visible[b-65rgksbdw6] {
    transform: translateY(-.25rem);
    box-shadow: 0 1rem 2.5rem rgb(24 48 86 / 12%);
}

.card-number[b-65rgksbdw6] {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border-radius: .75rem;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 10%, white);
    font-weight: 900;
}

.navigation-card small[b-65rgksbdw6] {
    color: var(--accent);
    font-weight: 800;
}

.navigation-card h2[b-65rgksbdw6] {
    margin: .35rem 0;
    font-size: 1.15rem;
}

.navigation-card p[b-65rgksbdw6] {
    margin: 0;
    color: #617087;
    font-size: .9rem;
    line-height: 1.7;
}

.open-label[b-65rgksbdw6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--accent);
    font-size: .88rem;
    font-weight: 800;
}

.violet[b-65rgksbdw6] { --accent: #7047eb; }
.cyan[b-65rgksbdw6] { --accent: #0787a5; }
.amber[b-65rgksbdw6] { --accent: #b86b00; }
.green[b-65rgksbdw6] { --accent: #16845b; }
.rose[b-65rgksbdw6] { --accent: #c23b61; }
.indigo[b-65rgksbdw6] { --accent: #425bc7; }
.teal[b-65rgksbdw6] { --accent: #087d75; }
.slate[b-65rgksbdw6] { --accent: #52647b; }

.signed-out[b-65rgksbdw6],
.empty-state[b-65rgksbdw6] {
    max-width: 42rem;
    margin: 4rem auto;
    padding: 2.5rem;
    border: 1px solid #dfe7f5;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 1rem 3rem rgb(24 48 86 / 9%);
}

.signed-out img[b-65rgksbdw6] {
    display: block;
    width: 12rem;
    margin-bottom: 1.5rem;
}

.signed-out .primary-link[b-65rgksbdw6] {
    display: inline-block;
    margin-top: 1.25rem;
}

.empty-state h2[b-65rgksbdw6] {
    margin-top: 0;
}

.empty-state p[b-65rgksbdw6] {
    margin-bottom: 0;
    color: #5b6b82;
    line-height: 1.8;
}

@media (max-width: 58rem) {
    .navigation-grid[b-65rgksbdw6] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 40rem) {
    .home-heading[b-65rgksbdw6] { align-items: stretch; flex-direction: column; }
    .dashboard-link[b-65rgksbdw6] { text-align: center; }
    .quick-summary[b-65rgksbdw6],
    .navigation-grid[b-65rgksbdw6] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .quick-summary[b-65rgksbdw6] { gap: .55rem; }
    .quick-summary div[b-65rgksbdw6] { min-width: 0; padding: .7rem; }
    .quick-summary strong[b-65rgksbdw6] { font-size: .78rem; }
    .navigation-grid[b-65rgksbdw6] { gap: .65rem; }
    .navigation-card[b-65rgksbdw6] { min-height: 10.5rem; padding: .75rem; border-radius: .8rem; }
    .card-number[b-65rgksbdw6] { width: 2rem; height: 2rem; border-radius: .6rem; font-size: .78rem; }
    .navigation-card h2[b-65rgksbdw6] { font-size: .92rem; line-height: 1.45; }
    .navigation-card p[b-65rgksbdw6] { display: none; }
    .open-label[b-65rgksbdw6] { font-size: .72rem; }
}

@media (max-width: 21rem) {
    .quick-summary[b-65rgksbdw6],
    .navigation-grid[b-65rgksbdw6] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Invitations.razor.rz.scp.css */
.invitations-page[b-1dojknue2y] { max-width: 92rem; margin: 0 auto; padding: 2rem; direction: rtl; }
.page-heading[b-1dojknue2y] { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.page-heading span[b-1dojknue2y], .step-label[b-1dojknue2y] { color: #0755e9; font-weight: 800; }
.page-heading h1[b-1dojknue2y] { margin: .25rem 0; color: #10213d; }
.page-heading p[b-1dojknue2y] { max-width: 52rem; margin: 0; color: #64748b; }
.status-message[b-1dojknue2y] { margin-bottom: 1rem; padding: .85rem 1rem; border-radius: .75rem; background: #eaf8ef; color: #166534; }
.status-message.error[b-1dojknue2y] { background: #fff0f0; color: #b42318; }
.invitation-layout[b-1dojknue2y] { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(20rem, .8fr); gap: 1.25rem; }
.invitation-form[b-1dojknue2y], .delivery-card[b-1dojknue2y], .invitation-history[b-1dojknue2y] { padding: 1.35rem; border: 1px solid #dce5f3; border-radius: 1rem; background: #fff; box-shadow: 0 10px 28px rgba(27, 54, 93, .06); }
.invitation-form h2[b-1dojknue2y], .delivery-card h2[b-1dojknue2y] { margin: .35rem 0 1rem; }
.invitation-form h3[b-1dojknue2y] { margin: 1.2rem 0 .65rem; }
.contact-grid[b-1dojknue2y] { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.field[b-1dojknue2y] { display: grid; gap: .35rem; margin-bottom: .8rem; }
.field label[b-1dojknue2y] { color: #334155; font-weight: 700; }
.required[b-1dojknue2y]::after { content: " *"; color: #dc2626; }
.contact-help[b-1dojknue2y] { display: block; margin: -.35rem 0 .85rem; color: #64748b; }
.placeholder-list[b-1dojknue2y] { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem; }
.placeholder-list code[b-1dojknue2y] { padding: .25rem .45rem; border-radius: .35rem; background: #eef4ff; color: #0755e9; direction: ltr; }
.generated-result[b-1dojknue2y] { display: grid; gap: .6rem; padding: .9rem; border-radius: .75rem; background: #f7faff; }
.generated-result input[b-1dojknue2y] { width: 100%; padding: .65rem; border: 1px solid #cdd9eb; border-radius: .55rem; direction: ltr; }
.generated-result pre[b-1dojknue2y] { max-height: 18rem; overflow: auto; margin: 0; padding: .8rem; border-radius: .55rem; white-space: pre-wrap; background: #fff; font-family: inherit; }
.delivery-actions[b-1dojknue2y] { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.invitation-history[b-1dojknue2y] { margin-top: 1.25rem; overflow: hidden; }
.invitation-history h2[b-1dojknue2y] { margin-top: 0; }
.invitation-history strong[b-1dojknue2y], .invitation-history small[b-1dojknue2y] { display: block; }
.invitation-status[b-1dojknue2y] { display: inline-block; padding: .25rem .55rem; border-radius: 999px; font-weight: 800; background: #eef4ff; color: #0755e9; }
.invitation-status.accepted[b-1dojknue2y] { background: #eaf8ef; color: #166534; }
.invitation-status.cancelled[b-1dojknue2y], .invitation-status.expired[b-1dojknue2y] { background: #f1f5f9; color: #64748b; }
@media (max-width: 64rem) { .invitation-layout[b-1dojknue2y] { grid-template-columns: 1fr; } }
@media (max-width: 48rem) {
    .invitations-page[b-1dojknue2y] { padding: 1rem; }
    .page-heading[b-1dojknue2y] { align-items: stretch; flex-direction: column; }
    .contact-grid[b-1dojknue2y] { grid-template-columns: 1fr; }
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-shell[b-dho1ijz69s] {
    min-height: calc(100vh - 4.5rem);
    display: grid;
    place-items: center;
    padding: 2rem;
}
.login-experience[b-dho1ijz69s] { display: grid; grid-template-columns: minmax(18rem, 0.9fr) minmax(24rem, 1.1fr); width: min(100%, 66rem); overflow: hidden; border-radius: 1.5rem; box-shadow: 0 1.5rem 4rem rgb(24 48 86 / 14%); }
.login-brand[b-dho1ijz69s] { display: flex; min-height: 36rem; padding: 2rem; flex-direction: column; justify-content: space-between; color: #fff; background: #0d4fe7; }
.login-brand img[b-dho1ijz69s] { display: block; width: 100%; max-width: 28rem; margin: auto; }
.login-brand strong[b-dho1ijz69s] { display: block; font-size: 1.35rem; }
.login-brand p[b-dho1ijz69s] { color: rgb(255 255 255 / 82%); line-height: 1.8; }

.login-card[b-dho1ijz69s] {
    width: 100%;
    padding: 2.25rem;
    border: 1px solid #dfe7f5;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    min-width: 0;
    overflow: hidden;
}
@media (max-width: 42rem) {
    .login-shell[b-dho1ijz69s] { min-height: auto; place-items: start center; padding: .65rem 1rem 1rem; }
    .login-experience[b-dho1ijz69s] { grid-template-columns: 1fr; border-radius: 1.1rem; }
    .login-brand[b-dho1ijz69s] { min-height: auto; padding: .65rem; }
    .login-brand img[b-dho1ijz69s] { width: min(10rem, 52%); margin: 0 auto; }
    .login-brand div[b-dho1ijz69s] { display: none; }
    .login-card[b-dho1ijz69s] { padding: 1rem 1.25rem; }
    .login-card h1[b-dho1ijz69s] { overflow-wrap: anywhere; font-size: clamp(1.65rem, 8vw, 2.2rem); line-height: 1.35; }
    .login-card > p[b-dho1ijz69s] { margin-bottom: .35rem; line-height: 1.55; }
    .login-card .field[b-dho1ijz69s] { margin: .7rem 0; }
    .login-card[b-dho1ijz69s]  .e-input-group,
    .login-card[b-dho1ijz69s]  .e-control-wrapper { min-width: 0; max-width: 100%; }
}

.login-card h1[b-dho1ijz69s] { margin: 0.5rem 0; }
.login-card p[b-dho1ijz69s] { color: #5c6c84; line-height: 1.8; }
.eyebrow[b-dho1ijz69s] { color: #0755e9; font-weight: 700; }
.field[b-dho1ijz69s] { display: grid; gap: 0.45rem; margin: 1.2rem 0; }
.field label[b-dho1ijz69s] { font-weight: 700; }
.field[b-dho1ijz69s]  .validation-message { color: #b42318; font-size: 0.85rem; }
.password-row[b-dho1ijz69s] { position: relative; }
.password-row[b-dho1ijz69s]  .e-input-group { padding-left: 2.75rem; }
.password-toggle[b-dho1ijz69s] { position: absolute; top: 50%; left: .5rem; z-index: 2; display: grid; width: 2rem; height: 2rem; padding: 0; place-items: center; transform: translateY(-50%); border: 0; color: #52657f; background: transparent; cursor: pointer; }
.password-toggle svg[b-dho1ijz69s] { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.forgot-link[b-dho1ijz69s] { display: inline-block; margin-top: 1rem; color: #0755e9; font-weight: 700; }
.error-message[b-dho1ijz69s] {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 0.6rem;
    color: #8a1c13;
    background: #ffebe9;
}
/* /Components/Pages/OperationalAudit.razor.rz.scp.css */
.audit-page[b-tzsu3sxv4d] { max-width: 1280px; margin: 0 auto; padding: 2rem; }.page-heading span[b-tzsu3sxv4d] { color: #17695b; font-weight: 700; }.page-heading h1[b-tzsu3sxv4d] { margin: .25rem 0; }
.filters-card[b-tzsu3sxv4d] { display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)) auto; gap: 1rem; align-items: end; margin-top: 1.5rem; padding: 1rem; background: #fff; border: 1px solid #dce5e2; border-radius: 14px; }
.filters-card label[b-tzsu3sxv4d] { display: grid; gap: .35rem; font-weight: 650; }.filters-card input[b-tzsu3sxv4d], .filters-card select[b-tzsu3sxv4d] { padding: .65rem; border: 1px solid #b9c8c3; border-radius: 8px; background: #fff; }
.audit-grid-card[b-tzsu3sxv4d] { margin-top: 1.25rem; padding: 1rem; background: #fff; border: 1px solid #dce5e2; border-radius: 14px; }.status-message[b-tzsu3sxv4d] { margin-top: 1rem; padding: .8rem; background: #e8f7f1; border-radius: 9px; }.status-message.error[b-tzsu3sxv4d] { background: #fff0ed; color: #8c2e22; }
@media (max-width: 760px) { .audit-page[b-tzsu3sxv4d] { padding: 1rem; }.filters-card[b-tzsu3sxv4d] { grid-template-columns: 1fr; } }
/* /Components/Pages/OperationsDashboard.razor.rz.scp.css */
.operations-dashboard[b-sp23zx3wzf] { max-width: 1280px; margin: 0 auto; padding: 2rem; }
.page-heading[b-sp23zx3wzf], .financial-section > header[b-sp23zx3wzf], .attention-section > header[b-sp23zx3wzf] { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.page-heading span[b-sp23zx3wzf] { color: #17695b; font-weight: 700; }.page-heading h1[b-sp23zx3wzf], .financial-section h2[b-sp23zx3wzf], .attention-section h2[b-sp23zx3wzf] { margin: .25rem 0; }
.metric-grid[b-sp23zx3wzf] { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .85rem; margin-top: 1.5rem; }
.metric-grid article[b-sp23zx3wzf] { display: grid; gap: .25rem; padding: 1rem; background: #fff; border: 1px solid #dce5e2; border-radius: 13px; }
.metric-grid article.attention[b-sp23zx3wzf] { border-color: #e6a96b; background: #fffaf4; }.metric-grid strong[b-sp23zx3wzf] { font-size: 2rem; color: #164f46; }.metric-grid small[b-sp23zx3wzf] { color: #65736f; }
.financial-section[b-sp23zx3wzf], .attention-section[b-sp23zx3wzf] { margin-top: 1.25rem; padding: 1.2rem; background: #fff; border: 1px solid #dce5e2; border-radius: 14px; }
.financial-section a[b-sp23zx3wzf], .action-link[b-sp23zx3wzf] { color: #17695b; font-weight: 700; }.currency-grid[b-sp23zx3wzf] { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 1rem; }
.currency-grid article[b-sp23zx3wzf] { padding: 1rem; background: #f5f9f7; border-radius: 11px; }.currency-grid article header[b-sp23zx3wzf] { display: flex; justify-content: space-between; }.currency-grid article header strong[b-sp23zx3wzf] { font-size: 1.25rem; }
.currency-grid dl[b-sp23zx3wzf] { display: grid; gap: .45rem; }.currency-grid dl div[b-sp23zx3wzf] { display: flex; justify-content: space-between; gap: .5rem; }.currency-grid dd[b-sp23zx3wzf] { margin: 0; font-weight: 700; }
.attention-section > header[b-sp23zx3wzf] { margin-bottom: 1rem; }.empty[b-sp23zx3wzf] { color: #65736f; }.status-message.error[b-sp23zx3wzf] { margin-top: 1rem; padding: .8rem; background: #fff0ed; color: #8c2e22; border-radius: 9px; }
.operations-dashboard > footer[b-sp23zx3wzf] { margin-top: 1rem; color: #65736f; text-align: left; direction: ltr; }
@media (max-width: 720px) {
    .operations-dashboard[b-sp23zx3wzf] { padding: 1rem; }
    .page-heading[b-sp23zx3wzf], .financial-section > header[b-sp23zx3wzf] { flex-direction: column; }
    .metric-grid[b-sp23zx3wzf] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .metric-grid article[b-sp23zx3wzf] { padding: .8rem; }
    .metric-grid strong[b-sp23zx3wzf] { font-size: 1.5rem; }
}
/* /Components/Pages/OperatorProfile.razor.rz.scp.css */
.operator-profile-page[b-c23299vgyu] {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2rem;
}

.profile-tabs[b-c23299vgyu] {
    display: flex;
    gap: .5rem;
    margin: 1.25rem 0;
    padding: .35rem;
    width: fit-content;
    border: 1px solid #d9e2f2;
    border-radius: 14px;
    background: #fff;
}

.profile-tabs button[b-c23299vgyu] {
    border: 0;
    border-radius: 10px;
    background: transparent;
    padding: .75rem 1.2rem;
    color: #52627c;
    font-weight: 700;
}

.profile-tabs button.active[b-c23299vgyu] {
    background: #0e57e8;
    color: #fff;
}

.profile-card[b-c23299vgyu] {
    padding: 1.5rem;
    border: 1px solid #dbe4f3;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(16, 42, 84, .07);
}

.profile-card > header[b-c23299vgyu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-card h2[b-c23299vgyu],
.profile-card p[b-c23299vgyu] {
    margin: .25rem 0;
}

.operator-avatar[b-c23299vgyu] {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e9f0ff;
    color: #0e57e8;
    font-size: 1.7rem;
    font-weight: 800;
}

.profile-grid[b-c23299vgyu] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.field[b-c23299vgyu] {
    display: grid;
    gap: .45rem;
}

.field.wide[b-c23299vgyu] {
    grid-column: 1 / -1;
}

.connection-status[b-c23299vgyu] {
    border-radius: 999px;
    padding: .55rem .9rem;
    font-weight: 800;
}

.connection-status.connected[b-c23299vgyu] {
    background: #dcfce7;
    color: #166534;
}

.connection-status.pending[b-c23299vgyu] {
    background: #fef3c7;
    color: #92400e;
}

.connection-status.disconnected[b-c23299vgyu] {
    background: #fee2e2;
    color: #991b1b;
}

.connection-details[b-c23299vgyu] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    margin: 0 0 1.25rem;
}

.connection-details div[b-c23299vgyu] {
    padding: 1rem;
    border-radius: 14px;
    background: #f5f8fd;
}

.connection-details dt[b-c23299vgyu] {
    color: #71809a;
    font-size: .85rem;
}

.connection-details dd[b-c23299vgyu] {
    margin: .25rem 0 0;
    font-weight: 800;
}

.qr-panel[b-c23299vgyu] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1.25rem 0;
    padding: 1rem;
    border: 1px solid #cfe0ff;
    border-radius: 18px;
    background: #f7faff;
}

.qr-panel img[b-c23299vgyu] {
    width: min(280px, 45vw);
    border-radius: 12px;
}

.whatsapp-actions[b-c23299vgyu] {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.whatsapp-notice[b-c23299vgyu] {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 12px;
    background: #eef4ff;
    color: #334a70;
}

.whatsapp-notice.warning[b-c23299vgyu] {
    background: #fff7df;
    color: #704f00;
}

.whatsapp-progress[b-c23299vgyu] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #bdd3ff;
    border-radius: 14px;
    background: #f3f7ff;
}

.whatsapp-progress div[b-c23299vgyu] {
    display: grid;
    gap: .2rem;
}

.whatsapp-progress span[b-c23299vgyu] {
    color: #60718e;
}

.whatsapp-spinner[b-c23299vgyu] {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border: 4px solid #cbdafa;
    border-top-color: #0e57e8;
    border-radius: 50%;
    animation: whatsapp-spin-b-c23299vgyu .8s linear infinite;
}

.whatsapp-test-area[b-c23299vgyu] {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px dashed #7ea8f8;
    border-radius: 16px;
    background: #f8faff;
}

.whatsapp-test-area > span[b-c23299vgyu] {
    color: #0e57e8;
    font-size: .82rem;
    font-weight: 800;
}

.test-message-grid[b-c23299vgyu] {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) minmax(280px, 1.3fr);
    gap: 1rem;
    margin: 1rem 0;
}

@keyframes whatsapp-spin-b-c23299vgyu {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 720px) {
    .operator-profile-page[b-c23299vgyu] {
        padding: 1rem;
    }

    .profile-tabs[b-c23299vgyu] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .profile-grid[b-c23299vgyu],
    .connection-details[b-c23299vgyu],
    .test-message-grid[b-c23299vgyu] {
        grid-template-columns: 1fr;
    }

    .qr-panel[b-c23299vgyu] {
        flex-direction: column;
        text-align: center;
    }

    .qr-panel img[b-c23299vgyu] {
        width: min(320px, 100%);
    }
}
/* /Components/Pages/Operators.razor.rz.scp.css */
.operators-page[b-vgyvv8hzn3] { max-width: 96rem; margin: 0 auto; padding: 2rem; }
.page-heading[b-vgyvv8hzn3] { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.page-heading span[b-vgyvv8hzn3], .step-label[b-vgyvv8hzn3] { color: #0755e9; font-weight: 800; }
.page-heading h1[b-vgyvv8hzn3] { margin: .35rem 0; }
.page-heading p[b-vgyvv8hzn3] { margin: 0; color: #61718a; }
.operator-layout[b-vgyvv8hzn3] { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.25rem; }
.card[b-vgyvv8hzn3] { margin-top: 1.25rem; padding: 1.35rem; border: 1px solid #dfe7f5; border-radius: 1rem; background: #fff; box-shadow: 0 .5rem 2rem rgb(24 48 86 / 6%); }
.field[b-vgyvv8hzn3] { display: grid; gap: .45rem; margin: 1rem 0; }
.field label[b-vgyvv8hzn3] { font-weight: 700; }
.notice[b-vgyvv8hzn3] { margin: 1rem 0; padding: .8rem; border-radius: .6rem; color: #27466d; background: #edf5ff; line-height: 1.7; }
fieldset[b-vgyvv8hzn3] { display: grid; gap: .85rem; margin: 1rem 0; padding: 1rem; border: 1px solid #dfe7f5; border-radius: .7rem; }
fieldset label[b-vgyvv8hzn3], .confirmation[b-vgyvv8hzn3] { display: flex; align-items: center; gap: .55rem; }
.confirmation[b-vgyvv8hzn3] { margin: 1rem 0; }
.status-message[b-vgyvv8hzn3] { margin-top: 1rem; padding: .8rem 1rem; border-radius: .65rem; }
.status-message.success[b-vgyvv8hzn3] { color: #17643a; background: #e8f7ee; }
.status-message.error[b-vgyvv8hzn3] { color: #8a1c13; background: #ffebe9; }
@media (max-width: 68rem) { .operator-layout[b-vgyvv8hzn3] { grid-template-columns: 1fr; } }
@media (max-width: 42rem) { .operators-page[b-vgyvv8hzn3] { padding: 1rem; } .page-heading[b-vgyvv8hzn3] { align-items: stretch; flex-direction: column; } }
/* /Components/Pages/PasswordRecovery.razor.rz.scp.css */
.recovery-shell[b-5p0dfnrook] { min-height: calc(100vh - 4.5rem); display: grid; place-items: center; padding: 1rem; }
.recovery-card[b-5p0dfnrook] { width: min(100%, 34rem); padding: 2rem; border: 1px solid #dfe7f5; border-radius: 1.25rem; background: #fff; box-shadow: 0 1rem 3rem rgb(24 48 86 / 10%); }
.recovery-card > span[b-5p0dfnrook] { color: #0755e9; font-weight: 800; }
.recovery-card h1[b-5p0dfnrook] { margin: .5rem 0; }
.recovery-card > p[b-5p0dfnrook] { color: #5c6c84; line-height: 1.8; }
.recovery-card .field[b-5p0dfnrook] { display: grid; gap: .45rem; margin: 1rem 0; }
.recovery-card .field label[b-5p0dfnrook] { font-weight: 700; }
.recovery-message[b-5p0dfnrook] { margin: 1rem 0; padding: .85rem 1rem; border-radius: .7rem; }
.recovery-message.success[b-5p0dfnrook] { color: #17643a; background: #e8f7ee; }
.recovery-message.error[b-5p0dfnrook] { color: #8a1c13; background: #ffebe9; }
.password-row[b-5p0dfnrook] { position: relative; }
.password-row[b-5p0dfnrook]  .e-input-group { padding-left: 2.75rem; }
.password-toggle[b-5p0dfnrook] { position: absolute; top: 50%; left: .5rem; z-index: 2; display: grid; width: 2rem; height: 2rem; padding: 0; place-items: center; transform: translateY(-50%); border: 0; color: #52657f; background: transparent; cursor: pointer; }
.password-toggle svg[b-5p0dfnrook] { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.recovery-card > a[b-5p0dfnrook] { display: inline-block; margin-top: 1rem; color: #0755e9; font-weight: 700; }
/* /Components/Pages/Payments.razor.rz.scp.css */
.payment-review-page[b-64tx020zcz] { max-width: 1180px; margin: 0 auto; padding: 2rem; }
.page-heading[b-64tx020zcz], .review-card > header[b-64tx020zcz] { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.page-heading h1[b-64tx020zcz], .review-card h2[b-64tx020zcz] { margin: .25rem 0; }
.page-heading span[b-64tx020zcz], .review-card header span[b-64tx020zcz] { color: #19675a; font-weight: 700; }
.queue-card[b-64tx020zcz], .review-card[b-64tx020zcz] { margin-top: 1.5rem; padding: 1.25rem; background: #fff; border: 1px solid #dce5e2; border-radius: 16px; }
.status-message[b-64tx020zcz] { margin-top: 1rem; padding: .8rem 1rem; border-radius: 10px; background: #e8f7f1; }
.status-message.error[b-64tx020zcz], .duplicate-warning[b-64tx020zcz] { background: #fff1e5; color: #8a4100; }
.duplicate-warning[b-64tx020zcz] { margin: 1rem 0; padding: 1rem; border-radius: 10px; font-weight: 650; }
.evidence-details[b-64tx020zcz] { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.evidence-details div[b-64tx020zcz] { padding: .8rem; background: #f6f9f8; border-radius: 10px; }
.evidence-details dt[b-64tx020zcz] { color: #586863; }
.evidence-details dd[b-64tx020zcz] { margin: .35rem 0 0; }
.hash[b-64tx020zcz] { overflow-wrap: anywhere; direction: ltr; text-align: left; font-family: monospace; }
.preview-panel[b-64tx020zcz] { margin-top: 1rem; min-height: 360px; border: 1px solid #dce5e2; border-radius: 12px; overflow: hidden; }
.preview-panel object[b-64tx020zcz], .preview-panel img[b-64tx020zcz] { width: 100%; height: 520px; object-fit: contain; }
.decision-section[b-64tx020zcz] { margin-top: 1.25rem; }
.decision-section > label[b-64tx020zcz] { display: block; margin-bottom: .5rem; font-weight: 700; }
.decision-actions[b-64tx020zcz] { display: flex; gap: .75rem; margin-top: 1rem; }
.credit-operations[b-64tx020zcz] { margin-top: 1.5rem; padding: 1.25rem; border: 1px solid #dce5e2; border-radius: 16px; background: #fff; }
.credit-operations h2[b-64tx020zcz],.queue-card h2[b-64tx020zcz] { margin: .25rem 0 .8rem; }.credit-operations header p[b-64tx020zcz] { margin: 0; color: #586863; line-height: 1.7; }
.credit-create-grid[b-64tx020zcz] { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin: 1rem 0; }
.credit-create-grid label[b-64tx020zcz] { display: grid; gap: .4rem; font-weight: 700; }
.credit-create-grid input[type="datetime-local"][b-64tx020zcz] { width: 100%; min-height: 2.35rem; padding: .45rem; border: 1px solid #c8d5d1; border-radius: .4rem; }
@media (max-width: 760px) { .payment-review-page[b-64tx020zcz] { padding: 1rem; } .evidence-details[b-64tx020zcz] { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .credit-create-grid[b-64tx020zcz] { grid-template-columns: 1fr; } }
/* /Components/Pages/Providers.razor.rz.scp.css */
.providers-page[b-ocnh8dt99d] { max-width: 96rem; margin: 0 auto; padding: 2rem; }
.page-heading[b-ocnh8dt99d] { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.page-heading span[b-ocnh8dt99d], .step-label[b-ocnh8dt99d] { color: #0755e9; font-weight: 800; }
.page-heading h1[b-ocnh8dt99d] { margin: .35rem 0; }
.page-heading p[b-ocnh8dt99d] { margin: 0; color: #61718a; }
.card[b-ocnh8dt99d] { margin-top: 1.25rem; padding: 1.35rem; border: 1px solid #dfe7f5; border-radius: 1rem; background: #fff; box-shadow: 0 .5rem 2rem rgb(24 48 86 / 6%); }
.workspace[b-ocnh8dt99d] { display: grid; grid-template-columns: minmax(18rem, .7fr) minmax(32rem, 1.3fr); gap: 1.25rem; }
.field[b-ocnh8dt99d] { display: grid; gap: .45rem; margin: 1rem 0; }
.field label[b-ocnh8dt99d] { font-weight: 700; }
.field select[b-ocnh8dt99d], .field input[b-ocnh8dt99d] { width: 100%; padding: .72rem; border: 1px solid #cad6e8; border-radius: .55rem; background: #fff; }
.two-columns[b-ocnh8dt99d] { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.toggle[b-ocnh8dt99d] { display: flex; gap: .55rem; align-items: center; margin: 1rem 0; }
.immutable[b-ocnh8dt99d] { margin: 1rem 0; padding: .8rem; border-radius: .6rem; color: #774510; background: #fff3d6; }
.status-message[b-ocnh8dt99d] { margin-top: 1rem; padding: .8rem 1rem; border-radius: .65rem; }
.status-message.success[b-ocnh8dt99d] { color: #17643a; background: #e8f7ee; }
.status-message.error[b-ocnh8dt99d] { color: #8a1c13; background: #ffebe9; }
@media (max-width: 70rem) { .workspace[b-ocnh8dt99d] { grid-template-columns: 1fr; } }
@media (max-width: 42rem) { .providers-page[b-ocnh8dt99d] { padding: 1rem; } .page-heading[b-ocnh8dt99d] { align-items: stretch; flex-direction: column; } .two-columns[b-ocnh8dt99d] { grid-template-columns: 1fr; } }
/* /Components/Pages/Registrations.razor.rz.scp.css */
.review-page[b-gnntruj9du] { max-width: 90rem; margin: 0 auto; padding: 2rem; }
.page-heading[b-gnntruj9du], .review-card > header[b-gnntruj9du], .preview-panel > header[b-gnntruj9du] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.page-heading span[b-gnntruj9du], .review-card header span[b-gnntruj9du] { color: #0755e9; font-weight: 700; }
.page-heading h1[b-gnntruj9du], .review-card h2[b-gnntruj9du] { margin: 0.35rem 0; }
.page-heading p[b-gnntruj9du], .review-card header p[b-gnntruj9du] { margin: 0; color: #61718a; }
.queue-card[b-gnntruj9du], .review-card[b-gnntruj9du] {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid #dfe7f5;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0.5rem 2rem rgb(24 48 86 / 6%);
}
.status-message[b-gnntruj9du] { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 0.65rem; }
.status-message.success[b-gnntruj9du] { color: #17643a; background: #e8f7ee; }
.status-message.error[b-gnntruj9du] { color: #8a1c13; background: #ffebe9; }
.documents-section[b-gnntruj9du], .decision-section[b-gnntruj9du] { margin-top: 1.5rem; }
.document-list[b-gnntruj9du] { display: grid; gap: 0.75rem; }
.document-item[b-gnntruj9du] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e1e8f3;
    border-radius: 0.75rem;
}
.document-item div[b-gnntruj9du] { display: grid; gap: 0.25rem; }
.document-item span[b-gnntruj9du], .document-item small[b-gnntruj9du] { color: #64748b; }
.preview-panel[b-gnntruj9du] { margin-top: 1rem; padding: 1rem; border-radius: 0.75rem; background: #eef3fa; }
.preview-panel object[b-gnntruj9du] { width: 100%; min-height: 40rem; border: 0; background: #fff; }
.preview-panel img[b-gnntruj9du] { display: block; max-width: 100%; max-height: 45rem; margin: auto; }
.decision-section[b-gnntruj9du] { display: grid; gap: 0.75rem; }
.decision-section label[b-gnntruj9du] { font-weight: 700; }
.decision-actions[b-gnntruj9du] { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.profile-review[b-gnntruj9du] { margin-top: 1.25rem; padding: 1rem; border: 1px solid #dfe7f5; border-radius: .8rem; background: #f8faff; }
.profile-review h3[b-gnntruj9du] { margin-top: 0; }
.profile-review dl[b-gnntruj9du] { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin-bottom: 0; }
.profile-review dl div[b-gnntruj9du] { padding: .7rem; border-radius: .6rem; background: #fff; }
.profile-review dl .wide[b-gnntruj9du] { grid-column: 1 / -1; }
.profile-review dt[b-gnntruj9du] { color: #64748b; font-size: .82rem; }
.profile-review dd[b-gnntruj9du] { margin: .25rem 0 0; font-weight: 700; line-height: 1.5; }
@media (max-width: 48rem) {
    .review-page[b-gnntruj9du] { padding: 1rem; }
    .page-heading[b-gnntruj9du], .review-card > header[b-gnntruj9du], .document-item[b-gnntruj9du] { align-items: stretch; flex-direction: column; }
    .preview-panel object[b-gnntruj9du] { min-height: 28rem; }
    .profile-review dl[b-gnntruj9du] { grid-template-columns: 1fr; }
    .profile-review dl .wide[b-gnntruj9du] { grid-column: auto; }
}
/* /Components/Pages/Services.razor.rz.scp.css */
.services-page[b-jchx8xvdqb] { max-width: 98rem; margin: 0 auto; padding: 2rem; }
.page-heading[b-jchx8xvdqb] { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.page-heading span[b-jchx8xvdqb],.step-label[b-jchx8xvdqb] { color:#0755e9; font-weight:800; }.page-heading h1[b-jchx8xvdqb]{margin:.35rem 0}.page-heading p[b-jchx8xvdqb]{margin:0;color:#61718a}
.service-layout[b-jchx8xvdqb]{display:grid;grid-template-columns:minmax(22rem,.75fr) minmax(35rem,1.25fr);gap:1.25rem}.card[b-jchx8xvdqb]{margin-top:1.25rem;padding:1.35rem;border:1px solid #dfe7f5;border-radius:1rem;background:#fff;box-shadow:0 .5rem 2rem rgb(24 48 86 / 6%)}
.field[b-jchx8xvdqb]{display:grid;gap:.45rem;margin:1rem 0}.field label[b-jchx8xvdqb]{font-weight:700}.field select[b-jchx8xvdqb]{padding:.72rem;border:1px solid #cad6e8;border-radius:.55rem;background:#fff}.field[b-jchx8xvdqb]  textarea{min-height:8rem}.amount-row[b-jchx8xvdqb]{display:grid;grid-template-columns:1fr .45fr;gap:1rem}.confirmation[b-jchx8xvdqb]{display:flex;gap:.55rem;margin:1rem 0}.snapshot-notice[b-jchx8xvdqb]{padding:.8rem;border-radius:.6rem;background:#edf5ff;color:#27466d}.status-message[b-jchx8xvdqb]{margin-top:1rem;padding:.8rem 1rem;border-radius:.65rem}.status-message.success[b-jchx8xvdqb]{color:#17643a;background:#e8f7ee}.status-message.error[b-jchx8xvdqb]{color:#8a1c13;background:#ffebe9}
.money-grid[b-jchx8xvdqb]{display:grid;grid-template-columns:repeat(5,1fr);gap:.8rem}.money-grid div[b-jchx8xvdqb]{display:grid;gap:.4rem;padding:1rem;border-radius:.65rem;background:#f7f9fc}.money-grid span[b-jchx8xvdqb]{color:#64748b}.money-grid strong[b-jchx8xvdqb]{direction:ltr;text-align:right}
.recorded-reason[b-jchx8xvdqb]{margin:1rem 0;padding:.85rem;border-radius:.6rem;background:#fff3d6}.recorded-reason p[b-jchx8xvdqb]{margin:.4rem 0 0;white-space:pre-wrap}
@media(max-width:75rem){.service-layout[b-jchx8xvdqb]{grid-template-columns:1fr}.money-grid[b-jchx8xvdqb]{grid-template-columns:repeat(2,1fr)}}@media(max-width:42rem){.services-page[b-jchx8xvdqb]{padding:1rem}.page-heading[b-jchx8xvdqb]{align-items:stretch;flex-direction:column}.amount-row[b-jchx8xvdqb],.money-grid[b-jchx8xvdqb]{grid-template-columns:1fr}}
/* /Components/Pages/Terms.razor.rz.scp.css */
.terms-page[b-o2vvbxfgrr] { max-width: 96rem; margin: 0 auto; padding: 2rem; }
.page-heading[b-o2vvbxfgrr], .document-viewer > header[b-o2vvbxfgrr] { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.page-heading span[b-o2vvbxfgrr], .step-label[b-o2vvbxfgrr], .document-viewer header span[b-o2vvbxfgrr] { color: #0755e9; font-weight: 800; }
.page-heading h1[b-o2vvbxfgrr], .document-viewer h2[b-o2vvbxfgrr] { margin: 0.35rem 0; }
.page-heading p[b-o2vvbxfgrr] { margin: 0; color: #61718a; }
.terms-layout[b-o2vvbxfgrr] { display: grid; grid-template-columns: minmax(20rem, 0.8fr) minmax(32rem, 1.4fr); gap: 1.25rem; margin-top: 1.5rem; }
.publish-card[b-o2vvbxfgrr], .history-card[b-o2vvbxfgrr], .document-viewer[b-o2vvbxfgrr] { padding: 1.35rem; border: 1px solid #dfe7f5; border-radius: 1rem; background: #fff; box-shadow: 0 0.5rem 2rem rgb(24 48 86 / 6%); }
.immutability-notice[b-o2vvbxfgrr] { margin: 1rem 0; padding: 0.85rem; border-radius: 0.65rem; color: #774510; background: #fff3d6; line-height: 1.7; }
.field[b-o2vvbxfgrr] { display: grid; gap: 0.45rem; margin: 1rem 0; }
.field label[b-o2vvbxfgrr] { font-weight: 700; }
.field select[b-o2vvbxfgrr] { width: 100%; padding: 0.75rem; border: 1px solid #cad6e8; border-radius: 0.55rem; background: #fff; }
.field[b-o2vvbxfgrr]  textarea { min-height: 18rem; line-height: 1.8; }
.field[b-o2vvbxfgrr]  .validation-message { color: #b42318; font-size: 0.85rem; }
.confirmation[b-o2vvbxfgrr] { display: flex; align-items: flex-start; gap: 0.55rem; margin: 1rem 0; line-height: 1.7; }
.status-message[b-o2vvbxfgrr] { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 0.65rem; }
.status-message.success[b-o2vvbxfgrr] { color: #17643a; background: #e8f7ee; }
.status-message.error[b-o2vvbxfgrr] { color: #8a1c13; background: #ffebe9; }
.document-viewer[b-o2vvbxfgrr] { margin-top: 1.25rem; }
.legal-content[b-o2vvbxfgrr] { margin-top: 1.25rem; padding: 1.25rem; border-radius: 0.7rem; white-space: pre-wrap; background: #f7f9fc; line-height: 2; }
.document-viewer footer[b-o2vvbxfgrr] { margin-top: 1rem; color: #64748b; font-size: 0.8rem; direction: ltr; text-align: left; }
@media (max-width: 70rem) { .terms-layout[b-o2vvbxfgrr] { grid-template-columns: 1fr; } }
@media (max-width: 42rem) { .terms-page[b-o2vvbxfgrr] { padding: 1rem; } .page-heading[b-o2vvbxfgrr], .document-viewer > header[b-o2vvbxfgrr] { align-items: stretch; flex-direction: column; } }
