/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-layout[b-b1ws9cr148] {
    display: flex;
    min-height: 100vh;
}

.sidebar[b-b1ws9cr148] {
    width: 260px;
    min-width: 260px;
    height: 100vh;
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, #1e3a5f 0%, #0f2744 50%, #0a1f3b 100%);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
}

.main-area[b-b1ws9cr148] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #f1f5f9;
}

main[b-b1ws9cr148] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-bar[b-b1ws9cr148] {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #1e3a5f;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar-title[b-b1ws9cr148] {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.btn-hamburger[b-b1ws9cr148] {
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-hamburger:hover[b-b1ws9cr148] {
    background: rgba(255,255,255,0.22);
}

.sidebar-overlay[b-b1ws9cr148] {
    display: none;
}

#blazor-error-ui[b-b1ws9cr148] {
    color-scheme: light only;
    background: #fef3c7;
    border-top: 2px solid #d97706;
    bottom: 0;
    box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.15);
    display: none;
    left: 0;
    padding: 0.75rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 10000;
    font-size: 0.9rem;
}

#blazor-error-ui .dismiss[b-b1ws9cr148] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 767.98px) {
    .sidebar[b-b1ws9cr148] {
        position: fixed;
        left: -280px;
        transition: left 0.3s ease;
        box-shadow: none;
    }

    .sidebar.open[b-b1ws9cr148] {
        left: 0;
        box-shadow: 4px 0 24px rgba(0,0,0,0.3);
    }

    .sidebar-overlay[b-b1ws9cr148] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .top-bar[b-b1ws9cr148] {
        display: flex;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* styles are in NavMenu.razor <style> block to bypass Blazor scoped CSS issues with NavLink */
