/* _content/AdminPortal/Pages/Account/AccountSecurity.razor.rz.scp.css */
.account-security-card[b-91g3sgq6un] {
    max-inline-size: 54rem;
}

.account-security-actions[b-91g3sgq6un] {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.account-security-actions .btn[b-91g3sgq6un] {
    min-block-size: 44px;
    white-space: normal;
}

.device-session-header[b-91g3sgq6un],
.device-session-footer[b-91g3sgq6un],
.device-session-pagination[b-91g3sgq6un] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .75rem;
}

.device-session-list[b-91g3sgq6un] {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    max-block-size: 28rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-block: 1px solid var(--admin-border-soft);
}

.device-session-list:focus-visible[b-91g3sgq6un] {
    outline: 2px solid var(--admin-primary);
    outline-offset: 2px;
}

.device-session-row[b-91g3sgq6un] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 1rem;
    padding-block: 1rem;
}

.device-session-row + .device-session-row[b-91g3sgq6un] {
    border-block-start: 1px solid var(--admin-border-soft);
}

.device-session-identity[b-91g3sgq6un] {
    overflow-wrap: anywhere;
}

.device-session-signout[b-91g3sgq6un] {
    display: block;
    min-block-size: 44px;
    margin-block-start: .5rem;
    white-space: normal;
}

.device-action-feedback[b-91g3sgq6un],
.device-signout-confirm[b-91g3sgq6un] {
    overflow-wrap: anywhere;
}

.device-session-times[b-91g3sgq6un] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin: 0;
    font-size: .8rem;
}

.device-session-times dt[b-91g3sgq6un] {
    color: var(--admin-muted);
    font-weight: 600;
    margin-block-end: .25rem;
}

.device-session-times dd[b-91g3sgq6un] {
    margin: 0;
    overflow-wrap: anywhere;
}

.device-refresh[b-91g3sgq6un],
.device-session-pagination .btn[b-91g3sgq6un] {
    min-block-size: 44px;
}

@media (max-width: 575.98px) {
    .account-security-actions .btn[b-91g3sgq6un] {
        inline-size: 100%;
    }

    .device-session-row[b-91g3sgq6un] {
        grid-template-columns: minmax(0, 1fr);
        gap: .75rem;
    }

    .device-session-pagination[b-91g3sgq6un] {
        inline-size: 100%;
    }
}
/* _content/AdminPortal/Shared/MainLayout.razor.rz.scp.css */
.admin-shell[b-hzjhh9wnoy] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f5f7fb;
}

.admin-main[b-hzjhh9wnoy] {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.admin-sidebar[b-hzjhh9wnoy] {
    background: #111827;
    color: #e5e7eb;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-backdrop[b-hzjhh9wnoy] {
    position: fixed;
    inset: 0;
    z-index: 29;
    width: 100%;
    height: 100%;
    padding: 0;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.5);
    border: 0;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.nav-backdrop.is-visible[b-hzjhh9wnoy] {
    pointer-events: auto;
    opacity: 1;
}

.admin-topbar[b-hzjhh9wnoy] {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 4.25rem;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #e5e7eb;
    backdrop-filter: blur(14px);
}

.topbar-title[b-hzjhh9wnoy] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.nav-toggle[b-hzjhh9wnoy] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-eyebrow[b-hzjhh9wnoy] {
    margin-bottom: 0.1rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.topbar-actions[b-hzjhh9wnoy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-content[b-hzjhh9wnoy] {
    flex: 1 1 auto;
    width: 100%;
    padding: 1rem;
}

@media (max-width: 760px) {
    .admin-sidebar[b-hzjhh9wnoy] {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 30;
        width: min(17rem, calc(100vw - 3rem));
        max-width: 100%;
        overflow: hidden;
        box-shadow: 18px 0 40px rgba(15, 23, 42, 0.24);
        transform: translateX(-105%);
        transition: transform 0.22s ease;
        will-change: transform;
    }

    .admin-sidebar.is-open[b-hzjhh9wnoy] {
        transform: translateX(0);
    }

    .admin-topbar[b-hzjhh9wnoy] {
        align-items: stretch;
        flex-direction: column;
    }

    .topbar-actions[b-hzjhh9wnoy] {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (min-width: 761px) {
    .nav-backdrop[b-hzjhh9wnoy],
    .nav-toggle[b-hzjhh9wnoy] {
        display: none;
    }

    .admin-shell[b-hzjhh9wnoy] {
        flex-direction: row;
        align-items: stretch;
    }

    .admin-sidebar[b-hzjhh9wnoy] {
        width: 17rem;
        height: 100vh;
        position: sticky;
        top: 0;
        flex: 0 0 17rem;
        overflow: hidden;
    }

    .admin-main[b-hzjhh9wnoy] {
        min-height: 100vh;
    }

    .admin-content[b-hzjhh9wnoy] {
        padding: 1.25rem 1.5rem 2rem;
    }
}
/* _content/AdminPortal/Shared/NavMenu.razor.rz.scp.css */
.admin-brand[b-1teh70hp2r] {
    min-height: 4.25rem;
    padding: 0.75rem 0.9rem;
    background: #111827;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand[b-1teh70hp2r] {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
}

.brand-mark[b-1teh70hp2r] {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 0.5rem;
    background: #10b981;
    color: #04111d;
    font-size: 0.78rem;
    font-weight: 800;
}

.brand-title[b-1teh70hp2r],
.brand-subtitle[b-1teh70hp2r] {
    display: block;
    line-height: 1.15;
}

.brand-title[b-1teh70hp2r] {
    color: #f9fafb;
    font-weight: 800;
}

.brand-subtitle[b-1teh70hp2r] {
    margin-top: 0.15rem;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
}

.navbar-toggler[b-1teh70hp2r] {
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.sidebar-close[b-1teh70hp2r] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: #e5e7eb;
}

.nav-scrollable[b-1teh70hp2r] {
    background: #111827;
    height: calc(100vh - 4.25rem);
    overflow-y: auto;
}

.admin-nav[b-1teh70hp2r] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.8rem;
}

.nav-section[b-1teh70hp2r] {
    padding-bottom: 0.35rem;
}

.nav-section-title[b-1teh70hp2r] {
    padding: 0.35rem 0.55rem;
    color: #818cf8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-section-account[b-1teh70hp2r] {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[b-1teh70hp2r] .nav-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.45rem;
    padding: 0.55rem 0.65rem;
    color: #cbd5e1;
    border-radius: 0.45rem;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
}

[b-1teh70hp2r] .nav-link .oi {
    width: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

[b-1teh70hp2r] .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

[b-1teh70hp2r] .nav-link:hover .oi {
    color: #cbd5e1;
}

[b-1teh70hp2r] .nav-link.active {
    color: #ecfeff;
    background: rgba(16, 185, 129, 0.16);
    box-shadow: inset 3px 0 0 #10b981;
}

[b-1teh70hp2r] .nav-link.active .oi {
    color: #34d399;
}

@media (min-width: 761px) {
    .navbar-toggler[b-1teh70hp2r] {
        display: none;
    }

    .nav-scrollable[b-1teh70hp2r] {
        height: calc(100vh - 4.25rem);
        overflow-y: auto;
    }
}
