.management-sidebar {
    position: fixed;
    top: 40px;
    left: -250px;
    width: 250px;
    height: calc(100vh - 40px);
    background-color: var(--primary-color);
    color: white;
    transition: left 0.3s ease;
    z-index: 1000;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.management-sidebar.visible {
    left: 0;
}

.toggle-management-sidebar {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    color: white;
    cursor: pointer;
}

.management-menu {
    height: 100%;
    overflow-y: auto;
}

.menu-header {
    padding: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.menu-list li a:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-color);
}

.menu-list li i {
    width: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .management-sidebar {
        top: 0;
        height: 100vh;
    }
    
    .management-sidebar.visible {
        left: 0;
        width: 100%;
    }
} 