/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-3nx97ty6yy] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-3nx97ty6yy] {
    flex: 1;
}

.sidebar[b-3nx97ty6yy] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3nx97ty6yy] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

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

    .top-row[b-3nx97ty6yy]  a:hover, .top-row[b-3nx97ty6yy]  .btn-link:hover {
        text-decoration: underline;
    }

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

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-3nx97ty6yy] {
        display: none;
    }

    .top-row.auth[b-3nx97ty6yy] {
        justify-content: space-between;
    }

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

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

    .sidebar[b-3nx97ty6yy] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

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

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

    .top-row[b-3nx97ty6yy], article[b-3nx97ty6yy] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
/* NavMenu.css */

.nav[b-j9ap141guf] {
    display: flex;
    align-items: center; /* Vertically aligns items */
    justify-content: center; /* Horizontally center the direct children */
    width: 100%; /* Ensures the .nav takes up full width */
    position: relative; /* Enables absolute positioning of child elements */
}

.nav[b-j9ap141guf]::before {
    /* Pseudo-element to push auth-controls to the right */
    content: '';
    position: absolute;
    right: 0;
    width: 50%; /* Half of .nav width */
    height: 100%;
    pointer-events: none; /* Ensures the pseudo-element doesn't block interactions */
}

.nav-links[b-j9ap141guf] {
    /* No need for specific styles here related to positioning, 
       as it will be centered by the .nav's justify-content */
}

.auth-controls[b-j9ap141guf] {
    position: absolute; /* Positioned relative to .nav */
    display: flex;
    align-items: center; /* Vertically aligns items */
    right: 0; /* Sticks to the right edge of .nav */
}

[b-j9ap141guf] .nav-link {
    float: left;
    display: block;
    color: var(--color-text);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1.5em;
    cursor: pointer;
}

[b-j9ap141guf] a {
    float: left;
    display: block;
    color: var(--color-text);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1em;
}
/*::deep .nav-link:hover {
    background-color: #ddd;
    color: black;
}*/
:[b-j9ap141guf]/*:deep .nav-link.active {
    background-color: #4CAF50;
    color: white;
}*/
