@import '_content/BlazLib.Mpa.AuthLib/BlazLib.Mpa.AuthLib.2szkg5g8ry.bundle.scp.css';
@import '_content/BlazLib.Mpa.UiLib/BlazLib.Mpa.UiLib.skij7hrsld.bundle.scp.css';

/* /Web/Components/DashboardComponents/MainPage/DashboardTile.razor.rz.scp.css */
.tile[b-cvg1fg7rgl] {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--site-color-3);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 220px;
    min-width: 220px;
    width: 220px;
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
    color: red;
}

    .tile[b-cvg1fg7rgl]  a {
        padding: 0;
        margin: 0;
        width:100%;
        text-decoration: none; /* Remove underline from link */
    }

    .tile:hover[b-cvg1fg7rgl] {
        transform: scale(1.05);
    }

.tile-content[b-cvg1fg7rgl] {
    display: flex;
    align-items: center; /* Center content vertically */
    height: 100%; /* Ensure the tile-content takes the full height of the tile */
    text-align: left; /* Align text to the left */
}

.icon-container[b-cvg1fg7rgl] {
    flex-shrink: 0;
    margin-right: 15px; /* Increase gap between icon and text */
    display: flex; /* Make the icon-container a flex container */
    align-items: center; /* Center icon vertically */
    height: 100%; /* Make icon-container take up full height of parent */
}



.icon[b-cvg1fg7rgl] {
    font-size: 40px; /* Adjust size if necessary */
}

.text-container[b-cvg1fg7rgl] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title[b-cvg1fg7rgl] {
    font-size: 1em;
    font-weight: 600; /* Remove bold */

    color: var(--bl-font-color-light);
}

.field[b-cvg1fg7rgl] {
    margin-top: 5px;
}

.label[b-cvg1fg7rgl] {
    font-size: 0.9em;
    color: var(--bl-font-color-light);
}

.value[b-cvg1fg7rgl] {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--bl-font-color-light);
}
/* /Web/Components/DashboardComponents/MainPage/DashboardTiles.razor.rz.scp.css */
/* Container for the entire dashboard */
.dashboard-container[b-t9j1idxi9c] {
    display: flex;
    flex-direction: column; /* Stack groups vertically */
    gap: 20px; /* Space between groups */
    padding: 20px;
    align-items: center; /* Center the groups horizontally */
}

/* Each tile group */
.tile-group[b-t9j1idxi9c] {
    background-color: #f7f7f7;
    padding: 15px 30px 15px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 900px; /* Maximum width for the group */
    width: 100%; /* Ensure it takes full width up to 900px */
    min-width: 280px; /* Ensure it takes full width up to 900px */
    margin: 0 auto; /* Center the group horizontally */
}

    /* Group title styling */
    .tile-group h2[b-t9j1idxi9c] {
        margin-bottom: 10px;
        font-size: 1.5em;
    }

/* Container for tiles within a group */
.tile-group-content[b-t9j1idxi9c] {
    display: flex;
    flex-direction: row; /* Align tiles horizontally */
    gap: 10px; /* Reduced space between tiles */
    flex-wrap: wrap; /* Allow tiles to wrap to the next line if needed */
    justify-content: space-between; /* Distribute tiles evenly */
}

/* /Web/Components/DashboardComponents/Users/UserEditor/UserEditorComponent.razor.rz.scp.css */
/* UserEditorComponent.razor.css - Colocated styles */

/* Shake animation for validation errors */
.shake[b-ruyxttzwhf] {
    animation: shake-b-ruyxttzwhf 0.5s ease-in-out;
}

@keyframes shake-b-ruyxttzwhf {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Card max width */
.user-editor-card[b-ruyxttzwhf] {
    max-width: 760px;
}

/* Form field styling */
.form-label[b-ruyxttzwhf] {
    font-weight: 500;
}
/* /Web/Components/DashboardComponents/Users/UsersView/UsersView.razor.rz.scp.css */
/* UsersView.razor.css - Colocated styles */

/* Table styling */
.users-table[b-jlcrryl20o] {
    width: 100%;
}

.users-table th[b-jlcrryl20o] {
    font-weight: 600;
    white-space: nowrap;
}

.users-table td[b-jlcrryl20o] {
    vertical-align: middle;
}

/* User key column - monospace */
.user-key[b-jlcrryl20o] {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.875em;
}

/* Action link styling */
.action-link[b-jlcrryl20o] {
    cursor: pointer;
    color: var(--bs-primary);
    text-decoration: none;
}

.action-link:hover[b-jlcrryl20o] {
    text-decoration: underline;
}

/* Email confirmed badge */
.badge-confirmed[b-jlcrryl20o] {
    font-size: 0.75rem;
}
/* /Web/Components/Layout/MinimalLayout/MinimalLayout.razor.rz.scp.css */
body[b-67a14vzbqv], html[b-67a14vzbqv] {
    margin: 0;
    height: 100%;
}

.page[b-67a14vzbqv] {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 100%;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}



header[b-67a14vzbqv] {
    background-color: #2c2e5b;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 1em;
    height: 80px;
    box-sizing: border-box;
}

    header img[b-67a14vzbqv] {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

.page > main[b-67a14vzbqv] {
    flex: 1 1 auto;
    min-height: 0; /* prevents iOS overflow */

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.page > footer[b-67a14vzbqv] {
    box-sizing: border-box;
    height: 80px;
    background-color: #2c2e5b;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2em;
    margin-top: auto;
}

    footer p[b-67a14vzbqv] {
        margin-top: 0;
        margin-bottom: 0;
    }
        footer p span[b-67a14vzbqv] {
            padding-left: 30px;
            padding-right: 30px;
        }
/* /Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-rtoelurlj8] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-rtoelurlj8] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-rtoelurlj8] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-rtoelurlj8] {
    font-size: 1.1rem;
}

.bi[b-rtoelurlj8] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-rtoelurlj8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-rtoelurlj8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-rtoelurlj8] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-rtoelurlj8] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-rtoelurlj8] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-rtoelurlj8] {
        padding-bottom: 1rem;
    }

    .nav-item[b-rtoelurlj8]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-rtoelurlj8]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-rtoelurlj8]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-rtoelurlj8] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-rtoelurlj8] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-rtoelurlj8] {
        display: none;
    }

    .nav-scrollable[b-rtoelurlj8] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Web/Components/Layout/PortalPageLayout/PortalHeaderContent.razor.rz.scp.css */

.nav-item-icon[b-n8z76yu5v7] {
    height: 30px;
    width: 30px;
    fill: currentColor;
    display: inline-block;
}
/* /Web/Components/Layout/PortalPageLayout/PortalPageLayout.razor.rz.scp.css */
.page[b-prw6h2x6bq] {
    display: grid;
    min-height: 100dvh;
    grid-template-columns: clamp(250px, 28vw, 300px) 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "headerbar headerbar"
        "sidebar maincontent"
        "footer footer";
}





/* Below ~lg: stack or go off-canvas instead of insisting on 500px */
@media (max-width: 768px) {
    .page[b-prw6h2x6bq] {
        grid-template-columns: 1fr;
        grid-template-areas:
            "headerbar"
            "maincontent"
            "footer";
    }
  


    /* Backdrop that harvests clicks */
    .backstop[b-prw6h2x6bq] {
        position: fixed;
        left: 0;
        right: 0;
        height:100dvh;

/*        top: var(--af-header-h);
        bottom: var(--af-footer-h);
*/
        background: rgba(0,0,0,.35);
        opacity: 0;
        pointer-events: none; /* only clickable when visible */
        transition: opacity 200ms linear;
        z-index: 1040; /* just below the drawer */
    }

        .backstop.show[b-prw6h2x6bq] {
            opacity: 1;
            pointer-events: auto;
        }
}
/* /Web/Components/Layout/PortalPageLayout/PortalPageLayoutAside.razor.rz.scp.css */
aside[b-ijfzcx2jmp] {
    grid-area: sidebar;
    height: 100%;
    padding: 2em;
    padding-left: 1em;
    background: var(--bs-body-bg);
    box-shadow: var(--bs-box-shadow);
    overflow-y: auto;
}

/* Sidebar header with logo - hidden on desktop */
.sidebar-header[b-ijfzcx2jmp] {
    display: none;
}

.sidebar-logo[b-ijfzcx2jmp] {
    height: 50px;
    width: auto;
}

/* Mobile: off-canvas sidebar */
@media (max-width: 768px) {

    aside[b-ijfzcx2jmp] {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 280px;
        height: 100vh; /* Full viewport height */
        padding: 0;
        transform: translateX(-100%); /* hidden off-screen */
        transition: transform 220ms ease;
        z-index: 1050; /* Above header */
        background: var(--bs-body-bg);
        box-shadow: 2px 0 10px rgba(0,0,0,0.15);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    aside.show[b-ijfzcx2jmp] {
        transform: translateX(0); /* slide in */
    }

    /* Show logo header on mobile */
    .sidebar-header[b-ijfzcx2jmp] {
        display: flex;
        align-items: center;
        padding: 1.25rem 1rem;
        background: var(--bs-body-bg);
        flex-shrink: 0; /* Don't shrink */
    }

    .sidebar-logo[b-ijfzcx2jmp] {
        height: 50px;
        width: auto;
    }

    /* Menu content scrollable */
    aside[b-ijfzcx2jmp]  .bs-sidebar,
    aside > :last-child[b-ijfzcx2jmp] {
        flex: 1;
        overflow-y: auto;
        padding: 1rem;
    }
}
/* /Web/Components/Layout/PortalPageLayout/PortalPageLayoutFooter.razor.rz.scp.css */
footer[b-f4ebilyyid] {
    grid-area: footer;
    box-sizing: border-box;
    height: 80px;
    background-color: #2c2e5b;
    color: #ffffff;
    padding: 2em;
    display: flex; /* enable flexbox */
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
    position: relative; /* ✅ Create stacking context */
    z-index: 100; /* ✅ Above sidebar and main content */
}

    footer p[b-f4ebilyyid] {
        margin-top: 0;
        margin-bottom: 0;
    }

    footer .footer-link[b-f4ebilyyid] {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }

    footer .footer-link:hover[b-f4ebilyyid] {
        color: #ffffff;
        text-decoration: underline;
    }
/* /Web/Components/Layout/PortalPageLayout/PortalPageLayoutHeader.razor.rz.scp.css */
header[b-4gyp6uzzxt] {
    grid-area: headerbar;
    box-sizing: border-box;
    top: 0;
    align-content: center;
    height: 80px;
    padding: 1em;
    position: sticky;
    background-color: #2c2e5b;
    display: grid;
    grid-template-columns: clamp(250px, 28vw, 300px) 1fr;
    grid-template-areas:
        "headerlogo headercontent";
    z-index: 1000;
}
/* /Web/Components/Layout/PortalPageLayout/PortalPageLayoutMain.razor.rz.scp.css */
main[b-87swnwsp0p] {
    grid-area: maincontent;
    min-width: 0;
    min-height: 0;
    overflow: auto;
    position: relative; /* ✅ Create stacking context */
    z-index: 1; /* ✅ Below both header and sidebar */
}
/* /Web/Components/Layout/PortalPageLayout/PortalSideMenuBar.razor.rz.scp.css */
/* Sidebar Logo */
.sidebar-logo-container[b-8gy3jxdcii] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 1rem;
    margin-bottom: 1rem;
}

.sidebar-brand[b-8gy3jxdcii] {
    text-decoration: none;
}

.sidebar-brand .brand-logo[b-8gy3jxdcii] {
    max-width: 100%;
    height: auto;
}

/* Sidebar Navigation */
.sidebar-nav[b-8gy3jxdcii] {
    padding: 0;
}

.sidebar-nav .nav-link[b-8gy3jxdcii] {
    padding: .5rem .75rem;
    font-size: .95rem;
    color: var(--bs-body-color);
    text-decoration: none;
    transition: background-color 0.15s ease-in-out;
}

.sidebar-nav .nav-link:hover[b-8gy3jxdcii] {
    background-color: var(--bs-tertiary-bg);
}

.sidebar-nav .nav-link.active[b-8gy3jxdcii] {
    background-color: #e8f0fe;
    color: #1a73e8;
    font-weight: 500;
}

.sidebar-nav .nav-link svg[b-8gy3jxdcii] {
    height: 20px;
    width: 20px;
    fill: currentColor;
    display: inline-block;
    flex-shrink: 0;
}

/* Section Toggle Button */
.nav-section-title[b-8gy3jxdcii] {
    width: 100%;
    text-align: left;
    font-weight: 500;
    padding: .5rem .75rem;
    color: var(--bs-body-color);
    background: transparent;
    border: none;
}

.nav-section-title:hover[b-8gy3jxdcii] {
    background-color: var(--bs-tertiary-bg);
}

.nav-section-title svg.bi[b-8gy3jxdcii] {
    height: 18px;
    width: 18px;
    fill: currentColor;
}

/* Chevron rotation */
.nav-section-title .chev[b-8gy3jxdcii] {
    transition: transform 0.2s ease;
    height: 12px;
    width: 12px;
}

.nav-section-title:not(.collapsed) .chev[b-8gy3jxdcii] {
    transform: rotate(90deg);
}

/* Nested items - no icons, just text */
.nav-section .collapse ul[b-8gy3jxdcii] {
    margin-left: 1.5rem;
}

.nav-section .collapse .nav-link[b-8gy3jxdcii] {
    padding: .4rem .75rem;
    font-size: .9rem;
}
/* /Web/Components/UI/FlyInSideBar/FlyInSideBar.razor.rz.scp.css */
/* /Web/Components/UI/HamburgerLogoMenu/HamburgerLogoMenu.razor.rz.scp.css */
.hamburgerlogomenu[b-vkx82qol0b] {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.1s ease, opacity 0.1s ease;
}

.hamburger-icon[b-vkx82qol0b] {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    cursor: pointer;
}

.hamburger-icon:active[b-vkx82qol0b] {
    transform: scale(0.9);
    opacity: 0.8;
}

.site-logo[b-vkx82qol0b] {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    margin-left: 10px;
    box-sizing: border-box;
    cursor: pointer;
}
/* /Web/Components/UI/Map/LeafletMap/LeafLetMap.razor.rz.scp.css */
.map-host[b-sm79a1dy5s] {
    width: 100%;
    height: 100%;
    max-width: 600px;
    min-width: 300px;
    max-height: 600px;
    min-height: 300px;
}
/* /Web/Components/UI/SideBarComponent/SidebarMenuItem.razor.rz.scp.css */
div.menuitem[b-ow4tmetjox] {
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    color: #fff !important;
    background-color: none;
    transition: background-color 500ms ease-in-out;
}
    div.menuitem.selected[b-ow4tmetjox] {
        background-color: #6d6d6d;
    }

    div.menuitem p.menuitemtext[b-ow4tmetjox], div.menuitem[b-ow4tmetjox]  a.menuitemtext {
        color: #fff;
        background-color: none;
    }

/* /Web/Components/UI/SideBarComponent/SidebarMenuItemGroupHeader.razor.rz.scp.css */
p.itemgroupheader[b-jrormgvtq6] {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    margin: 0px;
    padding: 5px 10px 5px 10px;
}
/* /Web/Components/UI/SideBarComponent/SlideInSideBarSection.razor.rz.scp.css */
.sidebar-container[b-resp0zdopy] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 250px;
    background-color: var(--site-color-4);
    transition: width 0.3s ease; /* Smooth transition for shrinking the width */
    overflow: hidden; /* Prevent overflow when shrinking */

    background-color: #2e323a;
    scrollbar-color: #7a7a7a #242424;
    scrollbar-width: thin;
    overflow-y: auto;
    /*    aside .aside
{
    transition: left .25s ease-in-out 50ms;
    scrollbar-color: #7a7a7a #242424;
    scrollbar-width: thin;
    overflow-y: auto;
    width: 15rem;
    position: fixed;
    top: 0;
    left: -15rem;
    z-index: 40;
    height: 100vh;
    padding: 0;
    box-shadow: none;
    background: #2e323a;
}
*/
}

    .sidebar-container.expand[b-resp0zdopy] {
        width: 250px; /* Sidebar is fully expanded */
    }

    .sidebar-container.hidden[b-resp0zdopy] {
        width: 0; /* Sidebar shrinks to 0 width */
    }

.sidebar-content[b-resp0zdopy] {
    width: 250px;
    padding: 10px;
    transition: transform 0.3s ease; /* Smooth slide transition */
}

.sidebar-container.hidden .sidebar-content[b-resp0zdopy] {
    transform: translateX(-250px); /* Slide content out of view */
}

.sidebar-container.expand .sidebar-content[b-resp0zdopy] {
    transform: translateX(0); /* Slide content into view */
}

/* /Web/Components/UI/SidebarLogoMenu/SidebarLogoMenu.razor.rz.scp.css */
.sidebarlogomenu[b-xelf9f4ggx] {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}

.sidebar-icon[b-xelf9f4ggx] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.sidebar-toggle-button[b-xelf9f4ggx] {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle-button:active[b-xelf9f4ggx] {
    transform: scale(0.9);
    opacity: 0.8;
}

.site-logo[b-xelf9f4ggx] {
    margin-left: 10px;
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    cursor: pointer;
    box-sizing: border-box;
}
/* /Web/Components/UI/SlideInSideBar/SlideInSideBar.razor.rz.scp.css */
.sidebar-container[b-ao4brjvs66] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 250px;
    background-color: var(--site-color-4);
    transition: width 0.3s ease; /* Smooth transition for shrinking the width */
    overflow: hidden; /* Prevent overflow when shrinking */

    background-color: #2e323a;
    scrollbar-color: #7a7a7a #242424;
    scrollbar-width: thin;
    overflow-y: auto;
    /*    aside .aside
{
    transition: left .25s ease-in-out 50ms;
    scrollbar-color: #7a7a7a #242424;
    scrollbar-width: thin;
    overflow-y: auto;
    width: 15rem;
    position: fixed;
    top: 0;
    left: -15rem;
    z-index: 40;
    height: 100vh;
    padding: 0;
    box-shadow: none;
    background: #2e323a;
}
*/
}

    .sidebar-container.expand[b-ao4brjvs66] {
        width: 250px; /* Sidebar is fully expanded */
    }

    .sidebar-container.hidden[b-ao4brjvs66] {
        width: 0; /* Sidebar shrinks to 0 width */
    }

.sidebar-content[b-ao4brjvs66] {
    width: 250px;
    padding: 10px;
    transition: transform 0.3s ease; /* Smooth slide transition */
}

.sidebar-container.hidden .sidebar-content[b-ao4brjvs66] {
    transform: translateX(-250px); /* Slide content out of view */
}

.sidebar-container.expand .sidebar-content[b-ao4brjvs66] {
    transform: translateX(0); /* Slide content into view */
}

/* /Web/Components/UI/UserInfo/UserInfo.razor.rz.scp.css */
.user-info[b-shjxapov8f] {
    color: white;
}

/* Pill � bump contrast a notch */
.ui-pill[b-shjxapov8f] {
    --pill-bg: rgba(255,255,255,.14);
    --pill-bd: rgba(255,255,255,.30);
    background: var(--pill-bg);
    border: 1px solid var(--pill-bd);
    border-radius: 9999px;
    padding-top: .35rem;
    padding-bottom: .35rem;
    padding-left: 0.6rem;
    padding-right: 1rem;
    max-width: 300px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset;
}

/* Avatar � hard lock the box so it's perfectly round */
.ui-avatar[b-shjxapov8f] {
    flex: 0 0 28px;
    height: 28px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 0;
    box-sizing: content-box;
    display: grid;
    place-items: center;
    font: 700 .85rem/1 system-ui;
    background: #fff;
    color: #1b2445;
}

/* Text */
.ui-name[b-shjxapov8f] {
    color: #fff;
    font-weight: 600;
}

.ui-org[b-shjxapov8f] {
    color: rgba(255,255,255,.78);
    font-size: .82rem;
}

/* Optional: stronger-contrast variant */
.ui-pill.hc[b-shjxapov8f] {
    --pill-bg: rgba(255,255,255,.20);
    --pill-bd: rgba(255,255,255,.38);
}
