/* _content/MyPrincipalMiniWeb/Components/Layout/LandingLayout.razor.rz.scp.css */
/* Organization colors used: --org-topbar-bg, --org-topbar-text, --org-nav-text, --org-nav-bg, --org-orange, --org-dark-purple */

.landing-layout[b-dukvhawh0n] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========== Top bar (dark grey) ========== */
.landing-topbar[b-dukvhawh0n] {
    background-color: var(--org-topbar-bg, #333333);
    color: var(--org-topbar-text, #aaaaaa);
    font-size: 0.875rem;
}

.landing-topbar-inner[b-dukvhawh0n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.landing-utility[b-dukvhawh0n] {
    display: flex;
    align-items: center;
    gap: 0;
}

.landing-utility-link[b-dukvhawh0n] {
    color: var(--org-topbar-text, #aaaaaa);
    text-decoration: none;
    padding: 0.35rem 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.landing-utility-link:hover[b-dukvhawh0n] {
    color: #fff;
}

.landing-utility-icon[b-dukvhawh0n] {
    opacity: 0.9;
}

.landing-topbar-divider[b-dukvhawh0n] {
    width: 1px;
    height: 1em;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.15rem;
}

.landing-search-wrap[b-dukvhawh0n] {
    display: flex;
    align-items: center;
}

.landing-search-input[b-dukvhawh0n] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.35rem 0.6rem;
    font-size: 0.8rem;
    width: 160px;
    border-radius: 2px 0 0 2px;
}

.landing-search-input[b-dukvhawh0n]::placeholder {
    color: var(--org-topbar-text, #aaaaaa);
}

.landing-search-btn[b-dukvhawh0n] {
    background: var(--org-topbar-bg, #333);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: none;
    color: var(--org-topbar-text, #aaaaaa);
    padding: 0.35rem 0.5rem;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
}

.landing-search-btn:hover[b-dukvhawh0n] {
    color: #fff;
}

/* ========== Main bar (white / light) ========== */
.landing-mainbar[b-dukvhawh0n] {
    background: var(--org-nav-bg, #ffffff);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.landing-mainbar-inner[b-dukvhawh0n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.5rem;
}

.landing-brand[b-dukvhawh0n] {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.landing-logo[b-dukvhawh0n] {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.landing-nav[b-dukvhawh0n] {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.landing-nav-link[b-dukvhawh0n] {
    color: var(--org-nav-text, #666666);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.landing-nav-link:hover[b-dukvhawh0n] {
    color: var(--org-dark-purple, #3d2463);
}

.landing-nav-arrow[b-dukvhawh0n] {
    font-size: 0.6em;
    opacity: 0.8;
}

.landing-mainbar-divider[b-dukvhawh0n] {
    width: 1px;
    height: 1.2em;
    background: #ddd;
    margin: 0 0.1rem;
}

.landing-cta-wrap[b-dukvhawh0n] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.landing-login-link[b-dukvhawh0n] {
    color: var(--org-nav-text, #666666);
    text-decoration: none;
    font-size: 0.9rem;
}

.landing-login-link:hover[b-dukvhawh0n] {
    color: var(--org-dark-purple, #3d2463);
}

.landing-cta[b-dukvhawh0n] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--org-orange, #ff6600);
    color: #fff !important;
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: none;
    border-radius: 2px;
}

.landing-cta:hover[b-dukvhawh0n] {
    background: var(--org-orange-hover, #e65c00);
    color: #fff;
}

.landing-cta-icon[b-dukvhawh0n] {
    font-size: 1em;
    opacity: 0.95;
}

/* ========== Main content ========== */
.landing-main[b-dukvhawh0n] {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
}

.landing-footer[b-dukvhawh0n] {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--org-nav-text, #666);
    border-top: 1px solid #e2e8f0;
    background: var(--org-nav-bg-alt, #f5f5f5);
}

@media (max-width: 900px) {
    .landing-utility[b-dukvhawh0n] {
        display: none;
    }

    .landing-nav[b-dukvhawh0n] {
        display: none;
    }

    .landing-mainbar-inner[b-dukvhawh0n] {
        justify-content: space-between;
    }

    .landing-cta[b-dukvhawh0n] {
        margin-left: auto;
    }
}
/* _content/MyPrincipalMiniWeb/Components/Layout/LoginLayout.razor.rz.scp.css */
/* Full-viewport blurred background for login landing */
.login-layout[b-8z7e1qzxmc] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.login-layout-bg[b-8z7e1qzxmc] {
    position: absolute;
    inset: -30px;
    background: linear-gradient(180deg, var(--org-purple, #4a148c) 0%, var(--org-dark-purple, #3d2463) 100%);
    filter: blur(0px);
}

.login-layout-overlay[b-8z7e1qzxmc] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.login-layout-content[b-8z7e1qzxmc] {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* _content/MyPrincipalMiniWeb/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-a1fubse6f2] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-a1fubse6f2] {
    flex: 1;
    min-width: 0;
}

.sidebar[b-a1fubse6f2] {
    background-image: linear-gradient(180deg, var(--org-purple, #4a148c) 0%, var(--org-dark-purple, #3d2463) 100%);
}

.top-row[b-a1fubse6f2] {
    background-color: var(--org-nav-bg-alt, #f5f5f5);
    border-bottom: 2px solid var(--org-dark-purple, #3d2463);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-a1fubse6f2]  a, .top-row[b-a1fubse6f2]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--org-dark-purple, #3d2463);
    }

    .top-row[b-a1fubse6f2]  a:hover, .top-row[b-a1fubse6f2]  .btn-link:hover {
        text-decoration: underline;
        color: var(--org-orange, #ff6600);
    }

    .top-row[b-a1fubse6f2]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-a1fubse6f2] {
        justify-content: space-between;
        height: auto;
        min-height: 2.75rem;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .top-row[b-a1fubse6f2]  a, .top-row[b-a1fubse6f2]  .btn-link {
        margin-left: 0;
        font-size: 0.9rem;
    }
}

/* Keep desktop split layout only on larger screens. */
@media (min-width: 992px) {
    .page[b-a1fubse6f2] {
        flex-direction: row;
    }

    .sidebar[b-a1fubse6f2] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-a1fubse6f2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-a1fubse6f2]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-a1fubse6f2], article[b-a1fubse6f2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Tablet/mobile: stack nav above content and reclaim width. */
@media (max-width: 991.98px) {
    .sidebar[b-a1fubse6f2] {
        position: static;
        width: 100%;
        height: auto;
    }

    .top-row[b-a1fubse6f2] {
        justify-content: flex-end;
    }

    .top-row[b-a1fubse6f2], article[b-a1fubse6f2] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

#blazor-error-ui[b-a1fubse6f2] {
    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-a1fubse6f2] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/MyPrincipalMiniWeb/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-6honlsst44] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-6honlsst44] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-6honlsst44] {
    min-height: 3.5rem;
    background-color: var(--org-dark-purple, #3d2463);
    border-bottom: none;
    display: flex;
    align-items: center;
}

.navbar-brand[b-6honlsst44] {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    text-decoration: none;
}

.navbar-brand-logo[b-6honlsst44] {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.bi[b-6honlsst44] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-gear-fill-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z'/%3E%3C/svg%3E");
}

.bi-pencil-square-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M15.502 1.94a.5.5 0 0 1 0 .706L14.459 3.69l-2-2L13.502.646a.5.5 0 0 1 .707 0l1.293 1.293zm-1.75 2.456-2-2L4.939 9.21a.5.5 0 0 0-.121.196l-.805 2.414a.25.25 0 0 0 .316.316l2.414-.805a.5.5 0 0 0 .196-.12l6.813-6.814z'/%3E%3Cpath fill-rule='evenodd' d='M1 13.5A1.5 1.5 0 0 0 2.5 15h11a1.5 1.5 0 0 0 1.5-1.5v-6a.5.5 0 0 0-1 0v6a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5v-11a.5.5 0 0 1 .5-.5H9a.5.5 0 0 0 0-1H2.5A1.5 1.5 0 0 0 1 2.5z'/%3E%3C/svg%3E");
}

.bi-building-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4 2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM4 5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM7.5 5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zM4.5 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm2.5.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm3.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z'/%3E%3Cpath d='M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1zm11 0H3v14h3v-2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5V15h3z'/%3E%3C/svg%3E");
}

.bi-mortarboard-fill-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.211 2.047a.5.5 0 0 0-.422 0l-7.5 3.5a.5.5 0 0 0 .025.917l7.5 3a.5.5 0 0 0 .372 0L14 7.14V13a1 1 0 0 0-1 1v2h3v-2a1 1 0 0 0-1-1V6.739l.686-.275a.5.5 0 0 0 .025-.917z'/%3E%3Cpath d='M4.176 9.032a.5.5 0 0 0-.656.327l-.5 1.7a.5.5 0 0 0 .294.605l4.5 1.8a.5.5 0 0 0 .372 0l4.5-1.8a.5.5 0 0 0 .294-.605l-.5-1.7a.5.5 0 0 0-.656-.327L8 10.466z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-upload-nav-menu[b-6honlsst44] {
    /* Upload icon used in the sidebar menu (custom CSS icon) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.646 1.146a.5.5 0 0 1 .708 0l3.5 3.5a.5.5 0 0 1-.708.708L9 2.707V14a.5.5 0 0 1-1 0V2.707L5.354 5.354a.5.5 0 1 1-.708-.708l3.5-3.5z'/%3E%3Cpath d='M.5 13.5A1.5 1.5 0 0 0 2 15h12a1.5 1.5 0 0 0 1.5-1.5V12h-1v1.5a.5.5 0 0 1-.5.5H2a.5.5 0 0 1-.5-.5V12h-1v1.5z'/%3E%3C/svg%3E");
}

.bi-shield-lock-fill-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 0c-.69 0-1.053.146-1.61.38-.558.235-1.148.561-2.06.834C3.42 1.49 2.261 1.714 1 1.714V7.07c0 3.248 1.87 6.212 4.863 7.67L8 16l2.137-1.26C13.13 13.282 15 10.318 15 7.07V1.714c-1.261 0-2.42-.224-3.33-.5-.913-.273-1.503-.6-2.06-.834C9.053.146 8.69 0 8 0zm1.5 8a1.5 1.5 0 1 0-3 0v.5H6a1 1 0 0 0-1 1V12a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V9.5a1 1 0 0 0-1-1h-.5V8zm-2 0a.5.5 0 1 1 1 0v.5h-1V8z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-6honlsst44] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-6honlsst44] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-6honlsst44] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-6honlsst44] {
        padding-bottom: 1rem;
    }

    .nav-item[b-6honlsst44]  .nav-link {
        color: rgba(255, 255, 255, 0.9);
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-6honlsst44]  a.active {
    background-color: var(--org-orange, #ff6600);
    color: white;
}

.nav-item[b-6honlsst44]  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.nav-scrollable[b-6honlsst44] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-6honlsst44] {
    display: block;
}

@media (min-width: 992px) {
    .navbar-toggler[b-6honlsst44] {
        display: none;
    }

    .nav-scrollable[b-6honlsst44] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

@media (max-width: 991.98px) {
    .top-row[b-6honlsst44] {
        min-height: 3.25rem;
    }

    .navbar-brand-logo[b-6honlsst44] {
        height: 34px;
        max-width: 160px;
    }

    .nav-item[b-6honlsst44] {
        font-size: 0.95rem;
    }

    .nav-item[b-6honlsst44]  .nav-link {
        height: 2.8rem;
        line-height: 2.8rem;
    }
}
/* _content/MyPrincipalMiniWeb/Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-t2unuhq4wd],
.components-reconnect-repeated-attempt-visible[b-t2unuhq4wd],
.components-reconnect-failed-visible[b-t2unuhq4wd],
.components-pause-visible[b-t2unuhq4wd],
.components-resume-failed-visible[b-t2unuhq4wd],
.components-rejoining-animation[b-t2unuhq4wd] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-t2unuhq4wd],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-t2unuhq4wd],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-t2unuhq4wd],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-t2unuhq4wd],
#components-reconnect-modal.components-reconnect-retrying[b-t2unuhq4wd],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-t2unuhq4wd],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-t2unuhq4wd],
#components-reconnect-modal.components-reconnect-failed[b-t2unuhq4wd],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-t2unuhq4wd] {
    display: block;
}


#components-reconnect-modal[b-t2unuhq4wd] {
    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-t2unuhq4wd 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-t2unuhq4wd 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-t2unuhq4wd 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-t2unuhq4wd]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-t2unuhq4wd 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-t2unuhq4wd {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-t2unuhq4wd {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-t2unuhq4wd {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-t2unuhq4wd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-t2unuhq4wd] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-t2unuhq4wd] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-t2unuhq4wd] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-t2unuhq4wd] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-t2unuhq4wd] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-t2unuhq4wd] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-t2unuhq4wd 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-t2unuhq4wd] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-t2unuhq4wd {
    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;
    }
}
/* _content/MyPrincipalMiniWeb/Components/Pages/Dashboard.razor.rz.scp.css */
/* Full-page dashboard container */
.mpm-hero[b-mqjkqlrvlk] {
    background-color: #f5f7fb;
    min-height: calc(100vh - 56px);
    padding: 1.5rem 1.75rem 2rem;
}

.mpm-hero-content[b-mqjkqlrvlk] {
    width: 100%;
}

/* Dashboard shell */
.mpm-dashboard[b-mqjkqlrvlk] {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Header */
.mpm-dashboard-header[b-mqjkqlrvlk] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.mpm-dashboard-title[b-mqjkqlrvlk] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--org-dark-purple, #3d2463);
}

.mpm-dashboard-subtitle[b-mqjkqlrvlk] {
    margin: 0;
    color: var(--org-nav-text, #666666);
    font-size: 0.95rem;
}

.mpm-dashboard-header-meta[b-mqjkqlrvlk] {
    text-align: right;
    font-size: 0.85rem;
}

.mpm-dashboard-date[b-mqjkqlrvlk] {
    font-weight: 600;
    color: var(--org-dark-purple, #3d2463);
}

.mpm-dashboard-brand[b-mqjkqlrvlk] {
    margin-top: 0.15rem;
    color: var(--org-orange, #ff6600);
}

/* Metric cards */
.mpm-dashboard-metrics[b-mqjkqlrvlk] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.mpm-card[b-mqjkqlrvlk] {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.18);
}

.metric-card[b-mqjkqlrvlk] {
    position: relative;
}

.metric-label[b-mqjkqlrvlk] {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--org-nav-text, #666666);
    margin-bottom: 0.45rem;
}

.metric-value[b-mqjkqlrvlk] {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--org-dark-purple, #3d2463);
}

/* Overview School Monitoring – charts */
.mpm-charts-section[b-mqjkqlrvlk] {
    margin-bottom: 2rem;
}

.mpm-charts-grid[b-mqjkqlrvlk] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.mpm-chart-card[b-mqjkqlrvlk] {
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.mpm-chart-card-wide[b-mqjkqlrvlk] {
    grid-column: 1 / -1;
    min-height: 0;
}

.mpm-chart-card-title[b-mqjkqlrvlk] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--org-dark-purple, #3d2463);
    margin: 0 0 0.5rem 0;
}

.mpm-chart-card .apexcharts-canvas[b-mqjkqlrvlk],
.mpm-chart-card div[class*="apexcharts"][b-mqjkqlrvlk] {
    max-height: 200px !important;
}

.mpm-chart-card-wide .apexcharts-canvas[b-mqjkqlrvlk],
.mpm-chart-card-wide div[class*="apexcharts"][b-mqjkqlrvlk] {
    max-height: 220px !important;
}

.mpm-chart-empty[b-mqjkqlrvlk] {
    margin: 0;
    padding: 2rem 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Section blocks */
.mpm-section-block[b-mqjkqlrvlk] {
    margin-bottom: 2rem;
}

.mpm-section-header[b-mqjkqlrvlk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}

.mpm-section-title[b-mqjkqlrvlk] {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--org-dark-purple, #3d2463);
}

.mpm-sections-grid[b-mqjkqlrvlk] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.section-card[b-mqjkqlrvlk] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.section-title[b-mqjkqlrvlk] {
    font-size: 0.98rem;
    font-weight: 600;
    margin: 0;
    color: var(--org-dark-purple, #3d2463);
}

.section-description[b-mqjkqlrvlk] {
    margin: 0;
    font-size: 0.86rem;
    color: var(--org-nav-text, #666666);
}

.section-link[b-mqjkqlrvlk] {
    align-self: flex-start;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: none;
    background-color: var(--org-orange, #ff6600);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.section-link:hover[b-mqjkqlrvlk] {
    background-color: var(--org-orange-hover, #e65c00);
    color: #fff;
}

/* Quick actions */
.mpm-quick-actions[b-mqjkqlrvlk] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.mpm-chip[b-mqjkqlrvlk] {
    border-radius: 999px;
    border: 1px solid #cbd5f5;
    background-color: #e5edff;
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
}

.mpm-chip.primary[b-mqjkqlrvlk] {
    background-color: var(--org-orange, #ff6600);
    border-color: var(--org-orange, #ff6600);
    color: #ffffff;
}

.mpm-chip:hover[b-mqjkqlrvlk] {
    filter: brightness(0.96);
}

.mpm-link-button[b-mqjkqlrvlk] {
    border: none;
    background: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--org-orange, #ff6600);
    cursor: pointer;
}

/* Recent students list */
.mpm-recent-list[b-mqjkqlrvlk] {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 0.9rem;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.18);
}

.mpm-recent-item[b-mqjkqlrvlk] {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mpm-recent-item:last-child[b-mqjkqlrvlk] {
    border-bottom: none;
}

.mpm-avatar[b-mqjkqlrvlk] {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    background-color: var(--org-dark-purple, #3d2463);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 0.9rem;
}

.mpm-recent-main[b-mqjkqlrvlk] {
    flex: 1;
}

.mpm-recent-name[b-mqjkqlrvlk] {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--org-dark-purple, #3d2463);
}

.mpm-recent-meta[b-mqjkqlrvlk] {
    font-size: 0.78rem;
    color: var(--org-nav-text, #666666);
}

.mpm-recent-date[b-mqjkqlrvlk] {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* Responsive tweaks */
@media (max-width: 960px) {
    .mpm-dashboard[b-mqjkqlrvlk] {
        padding: 1.5rem 1.25rem 1.75rem;
    }

    .mpm-dashboard-metrics[b-mqjkqlrvlk] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mpm-sections-grid[b-mqjkqlrvlk] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mpm-hero[b-mqjkqlrvlk] {
        padding: 0.85rem 0.8rem 1.25rem;
    }

    .mpm-card[b-mqjkqlrvlk] {
        padding: 0.8rem 0.85rem;
    }

    .mpm-dashboard-header[b-mqjkqlrvlk] {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .mpm-dashboard-header-meta[b-mqjkqlrvlk] {
        text-align: left;
    }

    .mpm-dashboard-metrics[b-mqjkqlrvlk] {
        grid-template-columns: minmax(0, 1fr);
    }

    .mpm-charts-grid[b-mqjkqlrvlk] {
        grid-template-columns: minmax(0, 1fr);
    }

    .mpm-sections-grid[b-mqjkqlrvlk] {
        grid-template-columns: minmax(0, 1fr);
    }

    .mpm-chart-card .apexcharts-canvas[b-mqjkqlrvlk],
    .mpm-chart-card div[class*="apexcharts"][b-mqjkqlrvlk] {
        max-height: 180px !important;
    }

    .mpm-chart-card-wide .apexcharts-canvas[b-mqjkqlrvlk],
    .mpm-chart-card-wide div[class*="apexcharts"][b-mqjkqlrvlk] {
        max-height: 200px !important;
    }
}
/* _content/MyPrincipalMiniWeb/Components/Pages/Landing.razor.rz.scp.css */
/* Two-panel login card (reference: blue left + white right) */
.login-card-2panel[b-wq7rrgv48q] {
    width: 100%;
    max-width: 1040px;
    min-height: 520px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
    display: flex;
    background: #ffffff;
}

.login-left[b-wq7rrgv48q] {
    width: 46%;
    background: linear-gradient(180deg, var(--org-purple, #4a148c) 0%, var(--org-dark-purple, #3d2463) 100%);
    position: relative;
    color: #fff;
    padding: 2.25rem 2rem;
}

.login-left-logo[b-wq7rrgv48q] {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

.login-left-logo-img[b-wq7rrgv48q] {
    height: 150px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 290px;
}

.login-left-wave[b-wq7rrgv48q] {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 45%, rgba(255, 255, 255, 0.18), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.login-left-content[b-wq7rrgv48q] {
    position: relative;
    z-index: 1;
    margin-top: 7rem;
}

.login-left-title[b-wq7rrgv48q] {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.login-left-text[b-wq7rrgv48q] {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    opacity: 0.95;
}

.login-left-footer[b-wq7rrgv48q] {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.login-right[b-wq7rrgv48q] {
    width: 54%;
    padding: 2.5rem 2.25rem;
    background: #ffffff;
    box-sizing: border-box;
}

.login-right-title[b-wq7rrgv48q] {
    margin: 0;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--org-dark-purple, #3d2463);
}

.login-right-subtitle[b-wq7rrgv48q] {
    margin: 0.4rem 0 1.8rem;
    color: var(--org-nav-text, #666666);
    font-size: 0.92rem;
    line-height: 1.4;
}

.login-validation[b-wq7rrgv48q] {
    font-size: 0.9rem;
    color: #c00;
    margin-bottom: 1rem;
}

.login-form-group[b-wq7rrgv48q] {
    margin-bottom: 1.35rem;
    width: 100%;
}

.login-label[b-wq7rrgv48q] {
    display: block;
    color: var(--org-dark-purple, #3d2463);
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.login-input[b-wq7rrgv48q] {
    display: block;
    width: 100% !important;
    max-width: none;
    border: 1px solid #d7dde6;
    border-radius: 4px;
    padding: 0.9rem 1rem;
    min-height: 48px;
    font-size: 1rem;
    color: #3a3f4a;
    background: #fff;
    box-sizing: border-box;
}

.login-input:focus[b-wq7rrgv48q] {
    outline: none;
    border-color: var(--org-orange, #ff6600);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.18);
}

.login-field-error[b-wq7rrgv48q] {
    display: block;
    font-size: 0.82rem;
    color: #c00;
    margin-top: 0.25rem;
}

.login-remember[b-wq7rrgv48q] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.4rem 0 1.6rem;
}

.login-checkbox[b-wq7rrgv48q] {
    width: 18px;
    height: 18px;
}

.login-remember-label[b-wq7rrgv48q] {
    color: var(--org-nav-text, #666666);
    font-size: 0.9rem;
    margin: 0;
}

.login-checkbox[b-wq7rrgv48q] {
    accent-color: var(--org-orange, #ff6600);
}

.login-submit[b-wq7rrgv48q] {
    width: 100%;
    border: none;
    border-radius: 4px;
    background: var(--org-orange, #ff6600);
    color: #fff;
    padding: 0.9rem 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
}

.login-submit:hover[b-wq7rrgv48q] {
    background: var(--org-orange-hover, #e65c00);
}

.login-bottom-links[b-wq7rrgv48q] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
    font-size: 0.9rem;
}

.login-bottom-link[b-wq7rrgv48q] {
    color: var(--org-nav-text, #666666);
    text-decoration: none;
}

.login-bottom-link:hover[b-wq7rrgv48q] {
    text-decoration: underline;
}

.login-bottom-underline[b-wq7rrgv48q] {
    text-decoration: underline;
}

@media (max-width: 820px) {
    .login-card-2panel[b-wq7rrgv48q] {
        flex-direction: column;
        min-height: auto;
    }

    .login-left[b-wq7rrgv48q] {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .login-left-content[b-wq7rrgv48q] {
        margin-top: 2.5rem;
    }

    .login-right[b-wq7rrgv48q] {
        width: 100%;
        padding: 2.25rem 1.75rem;
    }

    .login-bottom-links[b-wq7rrgv48q] {
        flex-direction: column;
    }
}
/* _content/MyPrincipalMiniWeb/Components/Pages/SectionStudents.razor.rz.scp.css */
.mpm-section-page[b-g46plgbz7r] {
    padding-top: 0.5rem;
}

.mpm-section-header-row[b-g46plgbz7r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mpm-section-page-title[b-g46plgbz7r] {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.mpm-section-page-subtitle[b-g46plgbz7r] {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.mpm-section-toolbar[b-g46plgbz7r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.mpm-toolbar-left[b-g46plgbz7r] {
    max-width: 360px;
    width: 100%;
}

.mpm-search[b-g46plgbz7r] {
    font-size: 0.9rem;
}

.mpm-section-table-wrapper[b-g46plgbz7r] {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.18);
    padding: 0.75rem 0.75rem 0.5rem;
}

.mpm-section-table thead th[b-g46plgbz7r] {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    border-bottom-width: 1px;
}

.mpm-section-table tbody td[b-g46plgbz7r] {
    vertical-align: middle;
    font-size: 0.9rem;
}

.mpm-sort-btn[b-g46plgbz7r] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.mpm-sort-btn:focus[b-g46plgbz7r] {
    outline: 2px solid rgba(255, 102, 0, 0.35);
    outline-offset: 2px;
    border-radius: 4px;
}

.mpm-sort-indicator[b-g46plgbz7r] {
    color: var(--org-orange, #ff6600);
    font-weight: 800;
    font-size: 0.85rem;
}

.mpm-pagination[b-g46plgbz7r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.mpm-pagination-info[b-g46plgbz7r] {
    font-size: 0.875rem;
    color: #64748b;
}

.mpm-pagination-buttons[b-g46plgbz7r] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mpm-pagination-pages[b-g46plgbz7r] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #0f172a;
}

@media (max-width: 640px) {
    .mpm-section-header-row[b-g46plgbz7r] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* _content/MyPrincipalMiniWeb/Components/Pages/Settings.razor.rz.scp.css */
/* Tabs */
.mpm-tabs[b-3yp8fdlnas] {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.18);
    overflow: hidden;
}

.mpm-tab-list[b-3yp8fdlnas] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
    gap: 0;
}

.mpm-tab-list li[b-3yp8fdlnas] {
    margin: 0;
}

.mpm-tab[b-3yp8fdlnas] {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.mpm-tab:hover[b-3yp8fdlnas] {
    color: #0f172a;
}

.mpm-tab.active[b-3yp8fdlnas] {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.mpm-tab-panels[b-3yp8fdlnas] {
    padding: 1.25rem 1.5rem;
}

.mpm-tab-panel[b-3yp8fdlnas] {
    min-height: 120px;
}

.mpm-letterhead-preview[b-3yp8fdlnas] {
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.375rem;
    padding: 0.5rem;
    background: #f8f9fa;
}

.mpm-letterhead-img[b-3yp8fdlnas] {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}
/* _content/MyPrincipalMiniWeb/Components/Pages/StudentDetails.razor.rz.scp.css */
.mpm-profile-page[b-khqs5kpgdq] {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}

.mpm-profile-header[b-khqs5kpgdq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.mpm-breadcrumb[b-khqs5kpgdq] {
    font-size: 0.9rem;
}

.mpm-breadcrumb a[b-khqs5kpgdq] {
    color: #2563eb;
    text-decoration: none;
}

.mpm-breadcrumb a:hover[b-khqs5kpgdq] {
    text-decoration: underline;
}

.mpm-breadcrumb-sep[b-khqs5kpgdq] {
    margin: 0 0.35rem;
    color: #94a3b8;
}

.mpm-profile-identity[b-khqs5kpgdq] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mpm-profile-identity-text[b-khqs5kpgdq] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mpm-profile-name[b-khqs5kpgdq] {
    font-weight: 600;
    font-size: 1.05rem;
    color: #0f172a;
}

.mpm-profile-section[b-khqs5kpgdq] {
    font-size: 0.85rem;
    color: #64748b;
}

.mpm-avatar[b-khqs5kpgdq] {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #1d4ed8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.mpm-avatar-lg[b-khqs5kpgdq] {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
}

.mpm-profile-card[b-khqs5kpgdq] {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.18);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.mpm-profile-card-title[b-khqs5kpgdq] {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mpm-icon[b-khqs5kpgdq] {
    font-size: 1.1rem;
}

.mpm-profile-grid[b-khqs5kpgdq] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 1.25rem;
}

.mpm-profile-field[b-khqs5kpgdq] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.mpm-field-label[b-khqs5kpgdq] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.mpm-field-value[b-khqs5kpgdq] {
    font-size: 0.9rem;
    color: #0f172a;
    background: #fff;
    padding: 0.4rem 0.5rem;
    border-radius: 0.35rem;
    border: 1px solid #ced4da;
    min-height: 2.25rem;
    display: flex;
    align-items: center;
}

.mpm-profile-actions[b-khqs5kpgdq] {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

/* Tabs */
.mpm-tabs[b-khqs5kpgdq] {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.18);
    overflow: hidden;
}

.mpm-tab-list[b-khqs5kpgdq] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
    gap: 0;
}

.mpm-tab-list li[b-khqs5kpgdq] {
    margin: 0;
}

.mpm-tab[b-khqs5kpgdq] {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.mpm-tab:hover[b-khqs5kpgdq] {
    color: #0f172a;
}

.mpm-tab.active[b-khqs5kpgdq] {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

.mpm-tab-panels[b-khqs5kpgdq] {
    padding: 1.25rem 1.5rem;
}

.mpm-tab-panel[b-khqs5kpgdq] {
    min-height: 120px;
}

.mpm-empty-state[b-khqs5kpgdq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #64748b;
    text-align: center;
}

.mpm-empty-icon[b-khqs5kpgdq] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.mpm-subject-list[b-khqs5kpgdq] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mpm-subject-list li[b-khqs5kpgdq] {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

/* Quotation */
.mpm-quotation-card[b-khqs5kpgdq] {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.mpm-list-header[b-khqs5kpgdq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.mpm-quotation-heading[b-khqs5kpgdq] {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #0f172a;
}

.mpm-quotation-subheading[b-khqs5kpgdq] {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.75rem 0 0.5rem 0;
    color: #475569;
}

.mpm-quotation-header-fields[b-khqs5kpgdq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.mpm-q-field label[b-khqs5kpgdq] {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.mpm-quotation-empty[b-khqs5kpgdq] {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.mpm-quotation-table[b-khqs5kpgdq] {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.mpm-quotation-table th[b-khqs5kpgdq] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.mpm-quotation-actions[b-khqs5kpgdq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
}

.mpm-quotation-total[b-khqs5kpgdq] {
    text-align: right;
    font-size: 0.9rem;
}

.mpm-quotation-total strong[b-khqs5kpgdq] {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #64748b;
}

.mpm-total-amount[b-khqs5kpgdq] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

@media (max-width: 992px) {
    .mpm-profile-grid[b-khqs5kpgdq] {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mpm-quotation-card .form-control[b-khqs5kpgdq],
.mpm-quotation-table .form-control[b-khqs5kpgdq] {
    border-color: #ced4da;
}

/* Fee statement */
.mpm-statement-subtitle[b-khqs5kpgdq] {
    font-size: 0.85rem;
    color: #64748b;
    margin: -0.25rem 0 1rem 0;
}

.mpm-statement-summary[b-khqs5kpgdq] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.mpm-statement-summary-item[b-khqs5kpgdq] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.mpm-statement-summary-item.mpm-statement-balance[b-khqs5kpgdq] {
    font-weight: 600;
    background: #f1f5f9;
}

.mpm-statement-summary-label[b-khqs5kpgdq] {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.mpm-statement-summary-value[b-khqs5kpgdq] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.mpm-statement-summary-value.mpm-debit[b-khqs5kpgdq] {
    color: #0f172a;
}

.mpm-statement-summary-value.mpm-credit[b-khqs5kpgdq] {
    color: #15803d;
}

.mpm-statement-table[b-khqs5kpgdq] {
    font-size: 0.875rem;
}

.mpm-statement-table th[b-khqs5kpgdq] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.mpm-badge[b-khqs5kpgdq] {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.mpm-badge-invoice[b-khqs5kpgdq] {
    background: #dbeafe;
    color: #1e40af;
}

.mpm-badge-payment[b-khqs5kpgdq] {
    background: #dcfce7;
    color: #15803d;
}

.mpm-badge-refund[b-khqs5kpgdq] {
    background: #fef3c7;
    color: #b45309;
}

@media (max-width: 768px) {
    .mpm-profile-grid[b-khqs5kpgdq] {
        grid-template-columns: 1fr;
    }

    .mpm-profile-header[b-khqs5kpgdq] {
        flex-direction: column;
        align-items: flex-start;
    }

    .mpm-profile-identity[b-khqs5kpgdq] {
        width: 100%;
    }

    .mpm-profile-identity-text[b-khqs5kpgdq] {
        align-items: flex-start;
    }
}

/* Payment modal */
.mpm-modal-backdrop[b-khqs5kpgdq] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}

.mpm-modal-overlay[b-khqs5kpgdq] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.mpm-modal-overlay .mpm-modal-content[b-khqs5kpgdq] {
    pointer-events: auto;
}

.mpm-modal-content[b-khqs5kpgdq] {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
}

.mpm-modal-header[b-khqs5kpgdq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.mpm-modal-header h2[b-khqs5kpgdq] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

.mpm-modal-close[b-khqs5kpgdq] {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #64748b;
    cursor: pointer;
    padding: 0 0.25rem;
}

.mpm-modal-close:hover[b-khqs5kpgdq] {
    color: #0f172a;
}

.mpm-modal-body[b-khqs5kpgdq] {
    padding: 1.25rem;
}

.mpm-payment-invoice-info[b-khqs5kpgdq] {
    background: #f8fafc;
    border-radius: 0.35rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.mpm-payment-invoice-info p[b-khqs5kpgdq] {
    margin: 0 0 0.25rem 0;
}

.mpm-payment-invoice-info p:last-child[b-khqs5kpgdq] {
    margin-bottom: 0;
}

.mpm-payment-fields .form-label[b-khqs5kpgdq] {
    font-size: 0.85rem;
    font-weight: 500;
}

.mpm-modal-footer[b-khqs5kpgdq] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}
/* _content/MyPrincipalMiniWeb/Components/Pages/StudentEdit.razor.rz.scp.css */
.mpm-section-form[b-grf0wvh9tw] {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.18);
    padding: 1.25rem 1.25rem 1rem;
}

.mpm-section-form .form-label[b-grf0wvh9tw] {
    font-size: 0.85rem;
    font-weight: 500;
}

.mpm-section-form .validation-message[b-grf0wvh9tw] {
    font-size: 0.8rem;
}

/* _content/MyPrincipalMiniWeb/Components/Shared/SearchableSelect.razor.rz.scp.css */
.mpm-searchable-select[b-8815dmswdh] {
    position: relative;
    display: block;
}

.mpm-searchable-select-trigger[b-8815dmswdh] {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
    background-color: var(--bs-body-bg, #fff);
    border: 1px solid var(--bs-border-color, #ced4da);
    border-radius: var(--bs-border-radius, 0.375rem);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    appearance: none;
}

.mpm-searchable-select-trigger:disabled[b-8815dmswdh] {
    cursor: not-allowed;
    opacity: 0.65;
}

.mpm-searchable-select-trigger-text[b-8815dmswdh] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mpm-searchable-select-arrow[b-8815dmswdh] {
    font-size: 0.6rem;
    opacity: 0.7;
    flex-shrink: 0;
}

.mpm-searchable-select-backdrop[b-8815dmswdh] {
    position: fixed;
    inset: 0;
    z-index: 1040;
}

.mpm-searchable-select-dropdown[b-8815dmswdh] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    margin-top: 2px;
    background: var(--bs-body-bg, #fff);
    border: 1px solid var(--bs-border-color, #ced4da);
    border-radius: var(--bs-border-radius, 0.375rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    max-height: 280px;
    display: flex;
    flex-direction: column;
}

.mpm-searchable-select-search[b-8815dmswdh] {
    padding: 0.25rem;
    border-bottom: 1px solid var(--bs-border-color-translucent, rgba(0, 0, 0, 0.175));
    flex-shrink: 0;
}

.mpm-searchable-select-list[b-8815dmswdh] {
    overflow-y: auto;
    padding: 0.25rem;
    min-height: 60px;
}

.mpm-searchable-select-option[b-8815dmswdh] {
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    border-radius: 0.25rem;
}

.mpm-searchable-select-option:hover[b-8815dmswdh] {
    background-color: var(--bs-secondary-bg, #e9ecef);
}

.mpm-searchable-select-option.selected[b-8815dmswdh] {
    background-color: var(--bs-primary-bg-subtle, #cfe2ff);
    color: var(--bs-primary, #0d6efd);
}

.mpm-searchable-select-empty[b-8815dmswdh] {
    padding: 0.75rem;
    color: var(--bs-secondary-color, #6c757d);
    font-size: 0.9rem;
}
