/* /Components/Layout/MainLayout.razor.rz.scp.css */
.layout-shell[b-xuzh0zw73n] {
    min-height: 100vh;
    background: #f8fafc;
}

.layout-header[b-xuzh0zw73n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.app-link[b-xuzh0zw73n] {
    text-decoration: none;
    color: #111827;
    font-weight: 900;
}

.header-actions[b-xuzh0zw73n] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.user-badge[b-xuzh0zw73n],
.nav-link[b-xuzh0zw73n],
.signin-link[b-xuzh0zw73n],
.signout-button[b-xuzh0zw73n] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    font-size: 0.92rem;
    text-decoration: none;
}

.user-badge[b-xuzh0zw73n] {
    background: #eef2ff;
    color: #312e81;
    font-weight: 700;
}

.nav-link[b-xuzh0zw73n],
.signin-link[b-xuzh0zw73n] {
    color: #111827;
    background: #ffffff;
    border: 1px solid #d1d5db;
}

.signout-button[b-xuzh0zw73n] {
    border: 1px solid #111827;
    background: #111827;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.layout-body[b-xuzh0zw73n] {
    min-height: calc(100vh - 73px);
}

.portal-layout-body[b-xuzh0zw73n] {
    min-height: 100vh;
    padding: 1rem;
    background: #f8fafc;
}

#blazor-error-ui[b-xuzh0zw73n] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px 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;
}

#blazor-error-ui .dismiss[b-xuzh0zw73n] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-6rymy8eue6],
.components-reconnect-repeated-attempt-visible[b-6rymy8eue6],
.components-reconnect-failed-visible[b-6rymy8eue6],
.components-pause-visible[b-6rymy8eue6],
.components-resume-failed-visible[b-6rymy8eue6],
.components-rejoining-animation[b-6rymy8eue6] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-6rymy8eue6],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-6rymy8eue6],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-6rymy8eue6],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-6rymy8eue6],
#components-reconnect-modal.components-reconnect-retrying[b-6rymy8eue6],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-6rymy8eue6],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-6rymy8eue6],
#components-reconnect-modal.components-reconnect-failed[b-6rymy8eue6],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-6rymy8eue6] {
    display: block;
}


#components-reconnect-modal[b-6rymy8eue6] {
    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-6rymy8eue6 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-6rymy8eue6 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-6rymy8eue6 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-6rymy8eue6]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-6rymy8eue6 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-6rymy8eue6 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-6rymy8eue6 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-6rymy8eue6 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-6rymy8eue6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-6rymy8eue6] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-6rymy8eue6] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-6rymy8eue6] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-6rymy8eue6] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-6rymy8eue6] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-6rymy8eue6] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-6rymy8eue6 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-6rymy8eue6] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-6rymy8eue6 {
    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/AdminPortal.razor.rz.scp.css */
/* Shared portal shell styles live in app.css and Components/Portal. */
/* /Components/Pages/Admin/ProviderApprovals.razor.rz.scp.css */
.approval-note-cell[b-e70j0be7mx] {
    min-width: 14rem;
}

.approval-note-input[b-e70j0be7mx] {
    width: 100%;
    min-width: 12rem;
    border: 1px solid #d1d5db;
    border-radius: 0.8rem;
    padding: 0.65rem 0.8rem;
    font: inherit;
    background: #ffffff;
    color: #111827;
}

.approval-note-input-invalid[b-e70j0be7mx] {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
    outline: none;
}

.approval-note-validation[b-e70j0be7mx] {
    margin-top: 0.35rem;
    color: #b91c1c;
    font-size: 0.85rem;
    line-height: 1.2;
}

.approval-action-row[b-e70j0be7mx] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.approval-reject-button[b-e70j0be7mx] {
    border-color: #ef4444;
    color: #b91c1c;
}

.milestone-banner.success[b-e70j0be7mx] {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.milestone-banner.failure[b-e70j0be7mx] {
    border-color: #fecaca;
    background: #fef2f2;
}
/* /Components/Pages/Auth/AccessDenied.razor.rz.scp.css */
.denied-shell[b-rcfl1j3r1l] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: #f8fafc;
}

.denied-card[b-rcfl1j3r1l] {
    width: min(100%, 560px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.denied-card h1[b-rcfl1j3r1l] {
    margin: 0.35rem 0 0.6rem 0;
    font-size: 2.1rem;
}

.denied-card p[b-rcfl1j3r1l] {
    color: #4b5563;
    line-height: 1.6;
}

.actions[b-rcfl1j3r1l] {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.actions a[b-rcfl1j3r1l] {
    display: inline-flex;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
}
/* /Components/Pages/Auth/BootstrapAdmin.razor.rz.scp.css */
.auth-shell[b-zwpjk10ab5] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.auth-shell-wide[b-zwpjk10ab5] {
    padding-block: 3rem;
}

.auth-card[b-zwpjk10ab5] {
    width: min(100%, 560px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    padding: 2rem;
}

.auth-card-wide[b-zwpjk10ab5] {
    width: min(100%, 760px);
}

.auth-copy h1[b-zwpjk10ab5] {
    margin: 0.25rem 0 0.6rem 0;
    font-size: 2.25rem;
}

.eyebrow[b-zwpjk10ab5] {
    margin: 0;
    color: #6b7280;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.lede[b-zwpjk10ab5] {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.error-banner[b-zwpjk10ab5],
.success-banner[b-zwpjk10ab5],
.info-banner[b-zwpjk10ab5],
.loading-banner[b-zwpjk10ab5] {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
}

.error-banner[b-zwpjk10ab5] {
    background: #fee2e2;
    color: #991b1b;
}

.success-banner[b-zwpjk10ab5] {
    background: #dcfce7;
    color: #166534;
}

.info-banner[b-zwpjk10ab5],
.loading-banner[b-zwpjk10ab5] {
    background: #e0e7ff;
    color: #3730a3;
}

.registration-form[b-zwpjk10ab5] {
    margin-top: 1.5rem;
}

.form-grid[b-zwpjk10ab5] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-grid label[b-zwpjk10ab5] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #374151;
    font-weight: 600;
}

.form-grid input[b-zwpjk10ab5],
.form-grid select[b-zwpjk10ab5] {
    border: 1px solid #d1d5db;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    font: inherit;
    background: #fff;
}

.form-grid small[b-zwpjk10ab5] {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

.full-row[b-zwpjk10ab5] {
    grid-column: 1 / -1;
}

.submit-button[b-zwpjk10ab5] {
    margin-top: 1.25rem;
    border: none;
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    background: #111827;
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.submit-button:disabled[b-zwpjk10ab5] {
    opacity: 0.7;
    cursor: wait;
}

.success-actions[b-zwpjk10ab5],
.auth-footer[b-zwpjk10ab5] {
    margin-top: 1rem;
}

.auth-footer[b-zwpjk10ab5],
.success-actions a[b-zwpjk10ab5] {
    color: #4b5563;
}

@media (max-width: 720px) {
    .form-grid[b-zwpjk10ab5] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Auth/Login.razor.rz.scp.css */
.auth-shell[b-8e6wbapf42] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.auth-card[b-8e6wbapf42] {
    width: min(100%, 480px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    padding: 2rem;
}

.auth-copy h1[b-8e6wbapf42] {
    margin: 0.25rem 0 0.6rem 0;
    font-size: 2.25rem;
}

.eyebrow[b-8e6wbapf42] {
    margin: 0;
    color: #6b7280;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.lede[b-8e6wbapf42] {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.error-banner[b-8e6wbapf42] {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: #fee2e2;
    color: #991b1b;
    font-weight: 700;
}

.login-form[b-8e6wbapf42] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.login-form label[b-8e6wbapf42] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #374151;
    font-weight: 600;
}

.login-form input[b-8e6wbapf42] {
    border: 1px solid #d1d5db;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    font: inherit;
}

.submit-button[b-8e6wbapf42] {
    margin-top: 0.4rem;
    border: none;
    border-radius: 1rem;
    padding: 0.95rem 1rem;
    background: #111827;
    color: #ffffff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
/* /Components/Pages/Auth/RegisterProvider.razor.rz.scp.css */
.auth-shell[b-zhn4bvzemm] {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.auth-shell-wide[b-zhn4bvzemm] {
    padding-block: 3rem;
}

.auth-card[b-zhn4bvzemm] {
    width: min(100%, 480px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
    padding: 2rem;
}

.auth-card-wide[b-zhn4bvzemm] {
    width: min(100%, 860px);
}

.auth-copy h1[b-zhn4bvzemm] {
    margin: 0.25rem 0 0.6rem 0;
    font-size: 2.25rem;
}

.eyebrow[b-zhn4bvzemm] {
    margin: 0;
    color: #6b7280;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.lede[b-zhn4bvzemm] {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

.error-banner[b-zhn4bvzemm],
.success-banner[b-zhn4bvzemm] {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
}

.error-banner[b-zhn4bvzemm] {
    background: #fee2e2;
    color: #991b1b;
}

.success-banner[b-zhn4bvzemm] {
    background: #dcfce7;
    color: #166534;
}

.loading-banner[b-zhn4bvzemm] {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
    background: #dbeafe;
    color: #1d4ed8;
}

.success-actions[b-zhn4bvzemm] {
    margin-top: 0.65rem;
}

.success-actions a[b-zhn4bvzemm],
.auth-footer a[b-zhn4bvzemm] {
    color: inherit;
    font-weight: 800;
}

.registration-form[b-zhn4bvzemm] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.registration-form .form-grid[b-zhn4bvzemm] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.registration-form label[b-zhn4bvzemm] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #374151;
    font-weight: 600;
}

.registration-form input[type="text"][b-zhn4bvzemm],
.registration-form input[type="email"][b-zhn4bvzemm],
.registration-form input[type="password"][b-zhn4bvzemm],
.registration-form select[b-zhn4bvzemm] {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    font: inherit;
    background: #ffffff;
}

.registration-form input:focus[b-zhn4bvzemm],
.registration-form select:focus[b-zhn4bvzemm] {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
}

.registration-form input.modified.invalid[b-zhn4bvzemm],
.registration-form input.invalid[b-zhn4bvzemm],
.registration-form select.modified.invalid[b-zhn4bvzemm],
.registration-form select.invalid[b-zhn4bvzemm],
.registration-form .input-validation-error[b-zhn4bvzemm] {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
    outline: none;
}

.registration-form .validation-message[b-zhn4bvzemm] {
    color: #c62828;
    font-size: 0.9rem;
    font-weight: 600;
}

.registration-form small[b-zhn4bvzemm] {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
}

.checkbox-row[b-zhn4bvzemm] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.checkbox-row input[type="checkbox"][b-zhn4bvzemm] {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
}

.submit-button[b-zhn4bvzemm] {
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
    cursor: pointer;
}

.submit-button:disabled[b-zhn4bvzemm] {
    cursor: wait;
    opacity: 0.75;
}

.auth-footer[b-zhn4bvzemm] {
    margin: 0;
    color: #6b7280;
}

@media (max-width: 860px) {
    .registration-form .form-grid[b-zhn4bvzemm] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/GuardianPortal.razor.rz.scp.css */
/* Shared portal shell styles live in app.css and Components/Portal. */
/* /Components/Pages/Home.razor.rz.scp.css */
.home-shell[b-ln0i4fl33r] {
    max-width: 1220px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-card[b-ln0i4fl33r] {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 1.2rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.eyebrow[b-ln0i4fl33r] {
    margin: 0 0 0.5rem 0;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-copy h1[b-ln0i4fl33r] {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    max-width: 15ch;
}

.lede[b-ln0i4fl33r] {
    margin-top: 1rem;
    max-width: 58ch;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.65;
}

.hero-actions[b-ln0i4fl33r] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.primary-link[b-ln0i4fl33r],
.secondary-link[b-ln0i4fl33r] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.primary-link[b-ln0i4fl33r] {
    background: #111827;
    color: #ffffff;
}

.secondary-link[b-ln0i4fl33r] {
    background: #eef2ff;
    color: #312e81;
}

.hero-panel[b-ln0i4fl33r],
.module-card[b-ln0i4fl33r] {
    border: 1px solid #e5e7eb;
    border-radius: 1.25rem;
    background: #ffffff;
    padding: 1.25rem;
}

.panel-title[b-ln0i4fl33r],
.module-card h2[b-ln0i4fl33r] {
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
    font-weight: 800;
}

.hero-panel ul[b-ln0i4fl33r] {
    margin: 0;
    padding-left: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

.module-grid[b-ln0i4fl33r] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.module-card p[b-ln0i4fl33r] {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hero-card[b-ln0i4fl33r],
    .module-grid[b-ln0i4fl33r] {
        grid-template-columns: 1fr;
    }

    .home-shell[b-ln0i4fl33r] {
        padding: 1rem;
    }
}
/* /Components/Pages/ProviderPortal.razor.rz.scp.css */
/* Shared portal shell styles live in app.css and Components/Portal. */
/* /Components/Portal/PortalSection.razor.rz.scp.css */
.portal-section[b-fa58u0n737] {
    padding: 1.1rem;
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.portal-section-header[b-fa58u0n737] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.portal-section-header h3[b-fa58u0n737] {
    margin: 0;
    font-size: 1.1rem;
}

.portal-section-header p[b-fa58u0n737] {
    margin: 0.3rem 0 0 0;
    color: #6b7280;
    line-height: 1.55;
}
/* /Components/Portal/PortalShell.razor.rz.scp.css */
.portal-shell[b-vp1q86ptvr] {
    min-height: calc(100vh - 5rem);
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 0;
    background: var(--portal-surface);
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.portal-sidebar[b-vp1q86ptvr] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, var(--portal-sidebar-start), var(--portal-sidebar-end));
    color: #fff;
}

.portal-brand[b-vp1q86ptvr] {
    min-height: 190px;
    border-radius: 1.4rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12));
    border: 1px solid rgba(255,255,255,0.16);
    overflow: hidden;
}

.portal-brand-overlay[b-vp1q86ptvr] {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(15,23,42,0.10), rgba(15,23,42,0.42));
}

.portal-eyebrow[b-vp1q86ptvr],
.portal-topbar-eyebrow[b-vp1q86ptvr] {
    margin: 0 0 0.4rem 0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portal-title[b-vp1q86ptvr] {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.1;
}

.portal-summary[b-vp1q86ptvr] {
    margin: 0.6rem 0 0 0;
    color: rgba(255,255,255,0.86);
    line-height: 1.55;
    font-size: 0.95rem;
}

.portal-nav[b-vp1q86ptvr] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.portal-nav-item[b-vp1q86ptvr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: rgba(255,255,255,0.92);
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-weight: 700;
    transition: background-color 120ms ease, transform 120ms ease;
}

.portal-nav-item:hover[b-vp1q86ptvr] {
    background: rgba(255,255,255,0.12);
    transform: translateX(2px);
}

.portal-nav-item.active[b-vp1q86ptvr] {
    background: rgba(255,255,255,0.20);
}

.portal-nav-icon[b-vp1q86ptvr] {
    width: 1.25rem;
    text-align: center;
}

.portal-sidecard[b-vp1q86ptvr] {
    margin-top: auto;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
}

.portal-sidecard-title[b-vp1q86ptvr],
.portal-sidecard-meta[b-vp1q86ptvr] {
    margin: 0;
    color: rgba(255,255,255,0.75);
}

.portal-sidecard-name[b-vp1q86ptvr] {
    margin: 0.35rem 0;
    font-size: 1rem;
    font-weight: 800;
}

.portal-sidecard-actions[b-vp1q86ptvr] {
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.portal-secondary-link[b-vp1q86ptvr],
.portal-signout[b-vp1q86ptvr] {
    font: inherit;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    text-decoration: none;
    font-weight: 700;
}

.portal-secondary-link[b-vp1q86ptvr] {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.portal-signout[b-vp1q86ptvr] {
    background: #fff;
    color: #111827;
    cursor: pointer;
}

.portal-main[b-vp1q86ptvr] {
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.portal-topbar[b-vp1q86ptvr] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: rgba(255,255,255,0.68);
    backdrop-filter: blur(10px);
}

.portal-topbar-eyebrow[b-vp1q86ptvr] {
    color: var(--portal-accent);
}

.portal-topbar h2[b-vp1q86ptvr] {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.1;
}

.portal-topbar-summary[b-vp1q86ptvr] {
    margin: 0.45rem 0 0 0;
    max-width: 60ch;
    color: #4b5563;
    line-height: 1.6;
}

.portal-topbar-actions[b-vp1q86ptvr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.portal-content[b-vp1q86ptvr] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1100px) {
    .portal-shell[b-vp1q86ptvr] {
        grid-template-columns: 1fr;
    }

    .portal-topbar[b-vp1q86ptvr] {
        flex-direction: column;
    }
}
/* /Components/Portal/PortalStatCard.razor.rz.scp.css */
.portal-stat-card[b-8rv2y1qzc7] {
    padding: 1.1rem;
    border-radius: 1.25rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.portal-stat-label[b-8rv2y1qzc7] {
    margin: 0;
    color: #6b7280;
    font-size: 0.92rem;
}

.portal-stat-value[b-8rv2y1qzc7] {
    margin: 0.4rem 0 0 0;
    font-size: 1.9rem;
    font-weight: 900;
}

.portal-stat-hint[b-8rv2y1qzc7] {
    margin: 0.35rem 0 0 0;
    color: #6b7280;
    font-size: 0.85rem;
}
/* /Components/Portal/PortalStatusPill.razor.rz.scp.css */
.portal-pill[b-vz9d5fzzk2] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.portal-pill.healthy[b-vz9d5fzzk2],
.portal-pill.success[b-vz9d5fzzk2] {
    background: #dcfce7;
    color: #166534;
}

.portal-pill.warning[b-vz9d5fzzk2],
.portal-pill.pending[b-vz9d5fzzk2],
.portal-pill.medium[b-vz9d5fzzk2] {
    background: #fef3c7;
    color: #92400e;
}

.portal-pill.critical[b-vz9d5fzzk2],
.portal-pill.failure[b-vz9d5fzzk2],
.portal-pill.high[b-vz9d5fzzk2] {
    background: #fee2e2;
    color: #991b1b;
}

.portal-pill.info[b-vz9d5fzzk2],
.portal-pill.neutral[b-vz9d5fzzk2] {
    background: #e0f2fe;
    color: #075985;
}
