/* _content/PalmettoPass.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════════
   MainLayout — Palmetto-branded responsive layout
   ═══════════════════════════════════════════════════════════════════════ */

.page[b-hgw9gcknu2] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-hgw9gcknu2] {
    flex: 1;
    background-color: var(--palmetto-gray-lighter);
}

/* ── Sidebar ────────────────────────────────────────────────────────── */

.sidebar[b-hgw9gcknu2] {
    background: linear-gradient(180deg, var(--palmetto-blue-dark) 0%, var(--palmetto-blue-darker) 100%);
}

/* ── Top row ────────────────────────────────────────────────────────── */

.top-row[b-hgw9gcknu2] {
    background: linear-gradient(90deg, var(--palmetto-blue-dark), var(--palmetto-blue-medium));
    border-bottom: 2px solid var(--palmetto-blue-light);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row .user-greeting[b-hgw9gcknu2] {
    color: rgba(255, 255, 255, 0.85);
    font-weight: var(--palmetto-font-weight-medium);
}

.top-row[b-hgw9gcknu2]  a,
.top-row[b-hgw9gcknu2]  .btn-link {
    white-space: nowrap;
    margin-left: 1rem;
    text-decoration: none;
}

.top-row[b-hgw9gcknu2]  a:hover,
.top-row[b-hgw9gcknu2]  .btn-link:hover {
    text-decoration: none;
    opacity: 0.9;
}

.top-row[b-hgw9gcknu2]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Content area ───────────────────────────────────────────────────── */

.content[b-hgw9gcknu2] {
    padding-top: var(--palmetto-spacing-lg);
    padding-bottom: var(--palmetto-spacing-xl);
}

/* ── Mobile-first (< 641px) ─────────────────────────────────────────── */

@media (max-width: 640.98px) {
    .top-row[b-hgw9gcknu2] {
        justify-content: space-between;
    }

    .top-row[b-hgw9gcknu2]  a,
    .top-row[b-hgw9gcknu2]  .btn-link {
        margin-left: 0;
    }

    .content[b-hgw9gcknu2] {
        padding-left: var(--palmetto-spacing-md) !important;
        padding-right: var(--palmetto-spacing-md) !important;
    }
}

/* ── Desktop (≥ 641px) ──────────────────────────────────────────────── */

@media (min-width: 641px) {
    .page[b-hgw9gcknu2] {
        flex-direction: row;
    }

    .sidebar[b-hgw9gcknu2] {
        width: 260px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }

    .top-row[b-hgw9gcknu2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-hgw9gcknu2]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-hgw9gcknu2], article[b-hgw9gcknu2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* ── Blazor error UI ────────────────────────────────────────────────── */

#blazor-error-ui[b-hgw9gcknu2] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-hgw9gcknu2] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/PalmettoPass.Web/Components/Layout/NavMenu.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════════════════
   NavMenu — Palmetto-branded sidebar navigation
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Header with logo ───────────────────────────────────────────────── */

.sidebar-header[b-pv51v5eiy8] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, var(--palmetto-blue-dark), var(--palmetto-blue-darker));
}

.brand-logo[b-pv51v5eiy8] {
    height: 2rem;
    width: auto;
    max-width: 160px;
}

.navbar-toggler[b-pv51v5eiy8] {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: var(--palmetto-border-radius);
}

.navbar-toggler-icon[b-pv51v5eiy8] {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    background-image: 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.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* ── Scrollable nav area ────────────────────────────────────────────── */

.nav-scrollable[b-pv51v5eiy8] {
    overflow-y: auto;
}

.nav-menu[b-pv51v5eiy8] {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

/* ── Section labels ─────────────────────────────────────────────────── */

.nav-section-label[b-pv51v5eiy8] {
    padding: 1rem 1rem 0.35rem 1rem;
    font-size: 0.7rem;
    font-weight: var(--palmetto-font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

/* ── Nav items & links ──────────────────────────────────────────────── */

.nav-item[b-pv51v5eiy8] {
    padding: 0 0.5rem;
}

.nav-item[b-pv51v5eiy8]  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--palmetto-border-radius);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: var(--palmetto-font-weight-regular);
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-item[b-pv51v5eiy8]  .nav-link:hover {
    background-color: rgba(63, 190, 235, 0.15);
    color: #fff;
}

.nav-item[b-pv51v5eiy8]  .nav-link.active {
    background-color: rgba(63, 190, 235, 0.2);
    color: #fff;
    font-weight: var(--palmetto-font-weight-medium);
    border-left: 3px solid var(--palmetto-blue-light);
}

.nav-icon[b-pv51v5eiy8] {
    font-size: 1rem;
    width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
}

/* ── Mobile: toggler visible, nav collapses ─────────────────────────── */

@media (max-width: 640.98px) {
    .navbar-toggler[b-pv51v5eiy8] {
        display: block;
    }

    .nav-scrollable.collapse[b-pv51v5eiy8] {
        display: none;
    }

    .nav-scrollable[b-pv51v5eiy8] {
        display: block;
    }
}

/* ── Desktop: toggler hidden, nav always visible ────────────────────── */

@media (min-width: 641px) {
    .navbar-toggler[b-pv51v5eiy8] {
        display: none;
    }

    .nav-scrollable[b-pv51v5eiy8] {
        display: block !important;
        height: calc(100vh - 3.5rem);
    }
}
/* _content/PalmettoPass.Web/Components/Shared/MultiSelect.razor.rz.scp.css */
.multiselect[b-5do2p127kx] {
    position: relative;
    width: 100%;
}

.multiselect-input[b-5do2p127kx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
    min-height: 38px;
}

.multiselect-input:hover[b-5do2p127kx] {
    border-color: #adb5bd;
}

.multiselect-input:focus-within[b-5do2p127kx] {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.multiselect-values[b-5do2p127kx] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.multiselect-arrow[b-5do2p127kx] {
    margin-left: 0.5rem;
    color: #6c757d;
    font-size: 0.75rem;
}

.multiselect-dropdown[b-5do2p127kx] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0.25rem;
    padding: 0.5rem;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    max-height: 300px;
    overflow-y: auto;
}

.multiselect-options[b-5do2p127kx] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.multiselect-option[b-5do2p127kx] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
}

.multiselect-option:hover[b-5do2p127kx] {
    background-color: #f8f9fa;
}

.multiselect-option input[type="checkbox"][b-5do2p127kx] {
    cursor: pointer;
}

.multiselect-option span[b-5do2p127kx] {
    flex: 1;
}
