/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-mnq8jitxio] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-mnq8jitxio] {
    flex: 1;
}

.sidebar[b-mnq8jitxio] {
    background-color: #101830; /* Dark Navy from Login */
    background-image: none;
}

.top-row[b-mnq8jitxio] {
    background-color: #101830; /* Dark Navy */
    border-bottom: 1px solid #2d3748;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    color: #e5e7eb;
}

    .top-row[b-mnq8jitxio]  a, .top-row[b-mnq8jitxio]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: #e5e7eb;
    }

    .top-row[b-mnq8jitxio]  a:hover, .top-row[b-mnq8jitxio]  .btn-link:hover {
        text-decoration: none;
        color: #fbbf24; /* Yellow highlight */
    }

    .top-row[b-mnq8jitxio]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 768px) {
    .top-row[b-mnq8jitxio] {
        justify-content: space-between;
    }

    .top-row[b-mnq8jitxio]  a, .top-row[b-mnq8jitxio]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 769px) {
    .page[b-mnq8jitxio] {
        flex-direction: row;
    }

    .sidebar[b-mnq8jitxio] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-mnq8jitxio] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-mnq8jitxio]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-mnq8jitxio], article[b-mnq8jitxio] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler-custom[b-rvblzgi6yr] {
    display: none;
}

.top-row[b-rvblzgi6yr] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-rvblzgi6yr] {
    font-size: 1.1rem;
    color: #fbbf24 !important; /* Yellow Brand */
    font-weight: bold;
    text-transform: uppercase;
}

.bi[b-rvblzgi6yr] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.nav-item[b-rvblzgi6yr] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-rvblzgi6yr] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-rvblzgi6yr] {
        padding-bottom: 1rem;
    }

    .nav-item[b-rvblzgi6yr]  a {
        color: #d1d5db; /* Light gray */
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        transition: all 0.2s ease;
    }

.nav-item[b-rvblzgi6yr]  a.active {
    background-color: rgba(251, 191, 36, 0.15); /* Yellow with opacity */
    color: #fbbf24; /* Yellow text */
    border-left: 3px solid #fbbf24;
}

.nav-item[b-rvblzgi6yr]  a:hover {
    background-color: rgba(255,255,255,0.05);
    color: #fbbf24;
}

@media (max-width: 768px) {
    .navbar-toggler-custom[b-rvblzgi6yr] {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 2000;
        width: 36px;
        height: 36px;
        background-color: #101830;
        border: 2px solid rgba(251, 191, 36, 0.5);
        border-radius: 6px;
        color: #fbbf24;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    }

    .navbar-toggler-custom:hover[b-rvblzgi6yr], .navbar-toggler-custom:focus[b-rvblzgi6yr] {
        background-color: #fbbf24;
        color: #101830;
        outline: none;
        transform: scale(1.05);
    }

    .nav-scrollable[b-rvblzgi6yr] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #101830;
        z-index: 1000;
        padding-top: 4rem;
    }
}

@media (min-width: 769px) {
    .navbar-toggler-custom[b-rvblzgi6yr] {
        display: none;
    }

    .collapse[b-rvblzgi6yr] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-rvblzgi6yr] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
