/* ===== CORRECTION DU MENU ===== */
/* Fichier dédié pour forcer le fond noir du menu */

#sidebarMenu, .sidebar, nav#sidebarMenu {
    background-color: #000000 !important;
    background: #000000 !important;
    background-image: none !important;
}

.sidebar-sticky, .position-sticky.sidebar-sticky {
    background-color: #000000 !important;
    background: #000000 !important;
}

.nav-link {
    color: #FFFFFF !important;
    transition: all 0.3s ease !important;
}

.nav-link:hover, .nav-link.active {
    color: #D4AF37 !important;
    background-color: rgba(212, 175, 55, 0.1) !important;
    transform: translateX(5px) !important;
}

/* Logo du menu */
.navbar-brand img {
    max-width: 200px !important;
    height: auto !important;
}

/* Responsive du menu */
@media (max-width: 768px) {
    #sidebarMenu {
        background-color: #000000 !important;
        background: #000000 !important;
    }
    
    .navbar-toggler {
        border-color: #D4AF37 !important;
        color: #D4AF37 !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
    }
} 