@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* _content/VIPBlazorServer/Shared/MainLayout.razor.rz.scp.css */
/* NAVIGATION FIX: Ensure sidebar is always visible on desktop */
.page[b-5mn10vx6m2] {
    position: relative;
    display: flex !important;
    flex-direction: row !important; /* Force horizontal layout on desktop */
    min-height: 100vh;
}

main[b-5mn10vx6m2] {
    flex: 1;
    width: 100%;
    min-width: 0; /* Prevent main content from pushing sidebar off screen */
}

.sidebar[b-5mn10vx6m2] {
    background-color: #0A3161;
    width: 250px !important;
    flex-shrink: 0 !important; /* Prevent sidebar from shrinking */
    position: sticky !important;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

/* Force sidebar visibility on desktop screens */
@media (min-width: 768px) {
    .sidebar[b-5mn10vx6m2] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.top-row[b-5mn10vx6m2] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
   /* justify-content: flex-end;*/
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-5mn10vx6m2]  a, .top-row .btn-link[b-5mn10vx6m2] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-5mn10vx6m2] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Mobile styles */
@media (max-width: 767.98px) {
    .page[b-5mn10vx6m2] {
        flex-direction: column !important;
    }
    
    .sidebar[b-5mn10vx6m2] {
        display: none !important; /* Hide on mobile - use offcanvas instead */
    }

    .top-row:not(.auth)[b-5mn10vx6m2] {
        display: none;
    }

    .top-row.auth[b-5mn10vx6m2] {
        justify-content: space-between;
    }

    .top-row a[b-5mn10vx6m2], .top-row .btn-link[b-5mn10vx6m2] {
        margin-left: 0;
    }
}

/* Desktop styles - CRITICAL FOR SIDEBAR VISIBILITY */
@media (min-width: 768px) {
    .page[b-5mn10vx6m2] {
        flex-direction: row !important;
    }

    .sidebar[b-5mn10vx6m2] {
        display: block !important;
        width: 250px !important;
        height: 100vh !important;
        position: sticky !important;
        top: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .top-row[b-5mn10vx6m2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-5mn10vx6m2], article[b-5mn10vx6m2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
    
    /* Hide mobile toggle on desktop */
    .navbar-toggler[b-5mn10vx6m2] {
        display: none !important;
    }
}

.TopBar[b-5mn10vx6m2] {
    background-color: #F5F5F5;
    border-bottom: 2px solid gray;
}
a[b-5mn10vx6m2]{
    text-decoration:none;
}
/* _content/VIPBlazorServer/Shared/NavMenu.razor.rz.scp.css */
/* Removed navbar-toggler styles as toggle is now in MainLayout */

.top-row[b-3l2mmr7nqm] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-3l2mmr7nqm] {
    font-size: 1.1rem;
}

.oi[b-3l2mmr7nqm] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-3l2mmr7nqm] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-3l2mmr7nqm] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-3l2mmr7nqm] {
        padding-bottom: 1rem;
    }

    .nav-item[b-3l2mmr7nqm]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-3l2mmr7nqm]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-3l2mmr7nqm]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

/* Desktop styles - Ensure nav menu is always visible */
@media (min-width: 768px) {
    .nav-menu[b-3l2mmr7nqm] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

a.anchor[b-3l2mmr7nqm] {
    text-decoration: none;   
}

div.expandMenu[b-3l2mmr7nqm] {
    background-color:black;  
}

a[b-3l2mmr7nqm] {
    text-decoration: none;  
}
/* _content/VIPBlazorServer/Shared/Tooltip.razor.rz.scp.css */
.tooltip-wrapper[b-h6xlcge5tm] {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: help;
}

span[b-h6xlcge5tm] {
    visibility: hidden;
    position: absolute;
    width: 160px;
    bottom: 100%;
    left: 50%;
    margin-left: -80px;
    background-color: #363636;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
}

    span[b-h6xlcge5tm]::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

.tooltip-wrapper:hover span[b-h6xlcge5tm] {
    visibility: visible;
}
/* _content/VIPBlazorServer/Shared/_ActionBar.razor.rz.scp.css */
.page[b-74a2td4izj] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-74a2td4izj] {
    flex: 1;
}

.sidebar[b-74a2td4izj] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-74a2td4izj] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    /* justify-content: flex-end;*/
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-74a2td4izj]  a, .top-row .btn-link[b-74a2td4izj] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-74a2td4izj] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-74a2td4izj] {
        display: none;
    }

    .top-row.auth[b-74a2td4izj] {
        justify-content: space-between;
    }

    .top-row a[b-74a2td4izj], .top-row .btn-link[b-74a2td4izj] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-74a2td4izj] {
        flex-direction: row;
    }

    .sidebar[b-74a2td4izj] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-74a2td4izj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-74a2td4izj], article[b-74a2td4izj] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
