/* _content/BusinessClient/Components/Layout/MainLayout.razor.rz.scp.css */
/* Left Sidebar White Design */
.left-sidebar[b-36c5uyjv4s] {
    position: fixed;
    top: 60px;
    left: 0;
    width: 260px;
    height: calc(100vh - 60px);
    background: #ffffff;
    overflow-y: auto;
    transition: transform 0.3s;
    z-index: 999;
    box-shadow: 2px 0 8px rgba(0,0,0,0.05);
}

/* Logo Section at Top */
.sidebar-logo[b-36c5uyjv4s] {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

    .sidebar-logo img[b-36c5uyjv4s] {
        max-height: 50px;
        margin-bottom: 10px;
    }

/* Menu Toggle Button */
.menu-toggle[b-36c5uyjv4s] {
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #2c7a7b;
    font-size: 1.5rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

    .menu-toggle:hover[b-36c5uyjv4s] {
        background: #f7fafc;
    }

/* Navigation Menu */
.nav-sidebar[b-36c5uyjv4s] {
    padding: 10px 0;
}

.nav-item[b-36c5uyjv4s] {
    margin: 2px 0;
}

/* Menu Item Links */
.menu-item[b-36c5uyjv4s] {
    color: #4a5568;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    user-select: none;
}

    .menu-item:hover[b-36c5uyjv4s] {
        background: #f7fafc;
        color: #2c7a7b;
        border-left-color: #e8e8e8;
    }

    .menu-item.active[b-36c5uyjv4s] {
        background: #e6f7f7;
        color: #2c7a7b;
        border-left-color: #2c7a7b;
    }

/* Menu Icons */
.menu-icon[b-36c5uyjv4s] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #2c7a7b;
    background: #e6f7f7;
    border-radius: 6px;
    padding: 4px;
}

.menu-item:hover .menu-icon[b-36c5uyjv4s],
.menu-item.active .menu-icon[b-36c5uyjv4s] {
    background: #2c7a7b;
    color: white;
}

/* Menu Text */
.menu-text[b-36c5uyjv4s] {
    flex: 1;
}

/* Submenu Arrow */
.submenu-arrow[b-36c5uyjv4s] {
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: #a0aec0;
}

    .submenu-arrow.open[b-36c5uyjv4s] {
        transform: rotate(180deg);
    }

/* Submenu Container */
.submenu[b-36c5uyjv4s] {
    background: #f7fafc;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-left: 2px solid #e8e8e8;
    margin-left: 20px;
}

    .submenu.show[b-36c5uyjv4s] {
        max-height: 500px !important;
    }

/* Submenu Items */
.submenu-item[b-36c5uyjv4s] {
    padding: 12px 20px 12px 46px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
    position: relative;
}

    .submenu-item[b-36c5uyjv4s]::before {
        content: '';
        position: absolute;
        left: 30px;
        width: 6px;
        height: 6px;
        background: #cbd5e0;
        border-radius: 50%;
    }

    .submenu-item:hover[b-36c5uyjv4s] {
        background: #edf2f7;
        color: #2c7a7b;
    }

        .submenu-item:hover[b-36c5uyjv4s]::before {
            background: #2c7a7b;
        }

    .submenu-item.active[b-36c5uyjv4s] {
        color: #2c7a7b;
        font-weight: 600;
    }

        .submenu-item.active[b-36c5uyjv4s]::before {
            background: #2c7a7b;
            width: 8px;
            height: 8px;
        }

/* Scrollbar Styling */
.left-sidebar[b-36c5uyjv4s]::-webkit-scrollbar {
    width: 6px;
}

.left-sidebar[b-36c5uyjv4s]::-webkit-scrollbar-track {
    background: #f7fafc;
}

.left-sidebar[b-36c5uyjv4s]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

    .left-sidebar[b-36c5uyjv4s]::-webkit-scrollbar-thumb:hover {
        background: #a0aec0;
    }

/* Dashboard Special Styling */
.menu-item.dashboard[b-36c5uyjv4s] {
    background: #e6f7f7;
    color: #2c7a7b;
    border-left-color: #2c7a7b;
    margin: 5px 10px;
    border-radius: 8px;
}

    .menu-item.dashboard .menu-icon[b-36c5uyjv4s] {
        background: #2c7a7b;
        color: white;
    }

/* Divider */
.menu-divider[b-36c5uyjv4s] {
    height: 1px;
    background: #e8e8e8;
    margin: 10px 20px;
}

/* Menu Section Title */
.menu-section-title[b-36c5uyjv4s] {
    padding: 15px 20px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .left-sidebar[b-36c5uyjv4s] {
        transform: translateX(-260px);
    }

        .left-sidebar.mobile-open[b-36c5uyjv4s] {
            transform: translateX(0);
        }
}

/* Animation for menu items */
@keyframes slideIn-b-36c5uyjv4s {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item[b-36c5uyjv4s],
.submenu-item[b-36c5uyjv4s] {
    animation: slideIn-b-36c5uyjv4s 0.3s ease;
}

/* Hover effect for better UX */
.menu-item[b-36c5uyjv4s],
.submenu-item[b-36c5uyjv4s] {
    position: relative;
    overflow: hidden;
}

    .menu-item[b-36c5uyjv4s]::after,
    .submenu-item[b-36c5uyjv4s]::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: rgba(44, 122, 123, 0.05);
        transition: width 0.3s ease;
    }

    .menu-item:hover[b-36c5uyjv4s]::after,
    .submenu-item:hover[b-36c5uyjv4s]::after {
        width: 100%;
    }

/* Badge/Count styling (optional) */
.menu-badge[b-36c5uyjv4s] {
    background: #2c7a7b;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

/* Active state glow effect */
.menu-item.active[b-36c5uyjv4s] {
    box-shadow: inset 0 0 0 1px rgba(44, 122, 123, 0.1);
}

/* Tooltip for collapsed sidebar (optional future enhancement) */
.menu-item[data-tooltip][b-36c5uyjv4s] {
    position: relative;
}

    .menu-item[data-tooltip]:hover[b-36c5uyjv4s]::before {
        content: attr(data-tooltip);
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        background: #2d3748;
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        white-space: nowrap;
        margin-left: 10px;
        font-size: 0.85rem;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* Perfect for icons library like Font Awesome or Bootstrap Icons */
.menu-icon i[b-36c5uyjv4s] {
    display: block;
}

/* Additional polish */
.menu-item[b-36c5uyjv4s],
.submenu-item[b-36c5uyjv4s] {
    user-select: none;
}

    /* Focus states for accessibility */
    .menu-item:focus[b-36c5uyjv4s],
    .submenu-item:focus[b-36c5uyjv4s] {
        outline: 2px solid #2c7a7b;
        outline-offset: -2px;
    }

/* Smooth transitions for all interactive elements */
*[b-36c5uyjv4s] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sidebar-logo[b-36c5uyjv4s] {
    width: 100px;
    transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-logo[b-36c5uyjv4s] {
    width: 50px; /* smaller size when collapsed */
    margin-left: 10px;
    transition: all 0.3s ease;
}
/* _content/BusinessClient/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-wb6kn4116e] {
    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-wb6kn4116e] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-wb6kn4116e] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-wb6kn4116e] {
    font-size: 1.1rem;
}

.bi[b-wb6kn4116e] {
    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-wb6kn4116e] {
    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-wb6kn4116e] {
    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-wb6kn4116e] {
    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-wb6kn4116e] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-wb6kn4116e] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-wb6kn4116e] {
        padding-bottom: 1rem;
    }

    .nav-item[b-wb6kn4116e]  .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-wb6kn4116e]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-wb6kn4116e]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-wb6kn4116e] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-wb6kn4116e] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-wb6kn4116e] {
        display: none;
    }

    .nav-scrollable[b-wb6kn4116e] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
