/* _content/AbraqAccount/Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-pdvgxg3hh9] {
    --sidebar-width: 286px;
    --navbar-height: 80px;
    --sidebar-bg: #343a40;
    --orange-line: #ffa500;
}

.page[b-pdvgxg3hh9] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-pdvgxg3hh9] {
    flex: 1;
}

.sidebar[b-pdvgxg3hh9] {
    background-color: var(--sidebar-bg);
}

.top-navbar[b-pdvgxg3hh9] {
    height: var(--navbar-height);
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.orange-separator[b-pdvgxg3hh9] {
    height: 3px;
    background-color: var(--orange-line);
}

@media (min-width: 641px) {
    .page[b-pdvgxg3hh9] {
        flex-direction: row;
    }

    .sidebar[b-pdvgxg3hh9] {
        width: var(--sidebar-width);
        height: 100vh;
        position: sticky;
        top: 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-content[b-pdvgxg3hh9] {
        flex: 1;
        margin-left: 0;
        /* Since we are using flex: row */
        background-color: #f5f6fa;
        min-height: 100vh;
    }
}

#blazor-error-ui[b-pdvgxg3hh9] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1100;
}

#blazor-error-ui .dismiss[b-pdvgxg3hh9] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/AbraqAccount/Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-menu[b-bjdpukd6mt] {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1rem;
    width: 100%;
}

.sidebar-menu li[b-bjdpukd6mt] {
    margin: 0;
}

.sidebar-menu[b-bjdpukd6mt]  a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    cursor: pointer;
    width: 100%;
}

.sidebar-menu[b-bjdpukd6mt]  a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar-menu[b-bjdpukd6mt]  a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: bold;
    border-left-color: #28a745;
}

.sidebar-menu i[b-bjdpukd6mt] {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* Dropdown Menu Styles */
.menu-item-with-dropdown[b-bjdpukd6mt] {
    position: relative;
}

.menu-item-with-dropdown>a[b-bjdpukd6mt] {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
}

.dropdown-arrow[b-bjdpukd6mt] {
    margin-left: auto;
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.menu-item-with-dropdown.open>a .dropdown-arrow[b-bjdpukd6mt] {
    transform: rotate(180deg);
}

.submenu[b-bjdpukd6mt] {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.1);
}

.menu-item-with-dropdown.open .submenu[b-bjdpukd6mt] {
    max-height: 1000px;
    /* Large enough for long submenus */
}

.submenu li[b-bjdpukd6mt] {
    margin: 0;
}

.submenu[b-bjdpukd6mt]  a {
    padding-left: 3rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.9rem;
}

.submenu[b-bjdpukd6mt]  a.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-left-color: #28a745;
}

/* Fix for Bi Icons in Blazor NavLink */
.bi[b-bjdpukd6mt] {
    width: 1.25rem;
    height: 1.25rem;
}
