/* Custom Sidebar Styles */
.user-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 260px;
    background: #FFF1D3;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.user-sidebar.active {
    transform: translateX(0);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #5D1C6A 0%, #CA5995 100%);
    color: white;
}

.sidebar-brand {
    font-size: 1.2rem;
    font-weight: bold;
}

.sidebar-brand i {
    margin-right: 0.5rem;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.sidebar-menu {
    padding: 1rem 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.sidebar-item:hover {
    background: rgba(93, 28, 106, 0.1);
    color: #5D1C6A;
}

.sidebar-item.active {
    background: rgba(93, 28, 106, 0.15);
    color: #5D1C6A;
    border-left: 3px solid #5D1C6A;
}

.sidebar-item i {
    width: 24px;
    margin-right: 0.75rem;
    text-align: center;
}

.sidebar-divider {
    height: 1px;
    background: #ddd;
    margin: 0.5rem 1rem;
}

.sidebar-logout {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: #dc3545;
}

.sidebar-logout:hover {
    background: rgba(220, 53, 69, 0.1);
}

.btn-hamburger {
background: rgba(255,255,255,0.1);
    border: none;
    color: black;
    font-size: 1.2rem;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.btn-hamburger:hover {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}
