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

main[b-v135qtsfij] {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-v135qtsfij], article[b-v135qtsfij] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* == RBA NAVBAR STYLING == */

.rba-navbar[b-wtljcysp89] {
    width: 100%;
    height: 65px;
    position: fixed;
    top: 0;
    z-index: 1000;
    padding: 0 2rem;
    background-color: transparent;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}
    .rba-navbar[b-wtljcysp89]::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50px;
        right: 50px;
        height: 4px;
        background-color: white;
        opacity: 1;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }    
    .rba-navbar.affix[b-wtljcysp89] {
        background-color: #111;
        border-bottom: 4px solid transparent;
    }
    .rba-navbar.affix[b-wtljcysp89]::after {
        opacity: 0;
    }  
.rba-nav-container[b-wtljcysp89] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.rba-brand[b-wtljcysp89] {
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* subtle black shadow */
}

    .rba-brand:hover[b-wtljcysp89] {
        color: #00e676;
    }

.rba-nav-list[b-wtljcysp89] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6); /* subtle black shadow */
}

    .rba-nav-list li a[b-wtljcysp89] {
        text-decoration: none;
        color: #fff;
        font-size: 1.3rem;
        transition: color 0.2s ease;
    }

        .rba-nav-list li a:hover[b-wtljcysp89] {
            color: #00e676;
        }

/* == Hamburger (Mobile) == */

.rba-nav-trigger[b-wtljcysp89] {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

    .rba-nav-trigger span[b-wtljcysp89] {
        background-color: #fff;
        height: 4px;
        width: 100%;
        border-radius: 2px;
        display: block;
    }

/* == Mobile Overrides == */

@media (max-width: 768px) {
    .rba-nav-list[b-wtljcysp89] {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background-color: #111;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        display: none;
    }
    

        .rba-nav-list.active[b-wtljcysp89] {
            display: flex;
        }

    .rba-nav-trigger[b-wtljcysp89] {
        display: flex;
    }
}
