/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Main page container - flexbox layout */
.page[b-nodg2is1ar] {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    width: 100%;
}

/* Sidebar - fixed width, doesn't overlap */
.sidebar[b-nodg2is1ar] {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #2d7a47 0%, #1a5c35 100%);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

/* Main content area - takes remaining space */
main[b-nodg2is1ar] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background-color: #f4f6f9;
}

/* Top bar */
.top-row[b-nodg2is1ar] {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 50;
}

.top-row a[b-nodg2is1ar], .top-row .btn-link[b-nodg2is1ar] {
    white-space: nowrap;
    margin-left: 1.5rem;
}

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

/* Responsive - mobile layout */
@media (max-width: 768px) {
    .page[b-nodg2is1ar] {
        flex-direction: column;
    }

    .sidebar[b-nodg2is1ar] {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: auto;
        position: relative;
    }

    .top-row[b-nodg2is1ar] {
        position: relative;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.nav-menu[b-cqwwb0n2ek] {
    height: 100%;
    padding: 1rem;
}

.brand[b-cqwwb0n2ek] {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.brand-icon[b-cqwwb0n2ek] {
    font-size: 2rem;
    margin-right: 0.5rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.brand-name[b-cqwwb0n2ek] {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.nav[b-cqwwb0n2ek] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-link[b-cqwwb0n2ek] {
    color: rgba(255,255,255,0.85);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.nav-link:hover[b-cqwwb0n2ek] {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-link.active[b-cqwwb0n2ek] {
    background-color: rgba(255,255,255,0.2);
    color: white;
    font-weight: 500;
}

.nav-icon[b-cqwwb0n2ek] {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.nav-icon svg[b-cqwwb0n2ek] {
    stroke: rgba(255,255,255,0.9);
    flex-shrink: 0;
}

[b-cqwwb0n2ek] .nav-link {
    color: rgba(255,255,255,0.85) !important;
}

[b-cqwwb0n2ek] .nav-link:hover,
[b-cqwwb0n2ek] .nav-link.active {
    color: white !important;
}

[b-cqwwb0n2ek] .nav-link:hover .nav-icon svg,
[b-cqwwb0n2ek] .nav-link.active .nav-icon svg {
    stroke: white;
}
