

    
    :root {
        --primary-color: #2563eb;
        --primary-hover: #1d4ed8;
        --secondary-color: #64748b;
        --success-color: #22c55e;
        --danger-color: #ef4444;
        --warning-color: #f59e0b;
        --info-color: #3b82f6;
        --light-color: #f8fafc;
        --dark-color: #1e293b;
        --border-color: #e2e8f0;
        --background-color: #f1f5f9;
        
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        
        --radius-sm: 0.375rem;
        --radius-md: 0.5rem;
        --radius-lg: 0.75rem;
        
        --transition: all 0.2s ease-in-out;
    }
    
    
    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    body {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    /* Barre de navigation noire */
    .first-navbar {
        background-color: #000;
        color: white;
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .first-navbar .logo {
        font-weight: bold;
        font-size: 16px;
    }
    
    .first-navbar .right-menu {
        display: flex;
        gap: 15px;
    }
    
    .first-navbar .right-menu a {
        color: white;
        text-decoration: none;
        font-size: 14px;
    }
    
    .first-navbar .right-menu a:hover {
        text-decoration: underline;
    }
    
    /* Menu d'icônes */
    .second-navbar {
        display: flex;
        /*justify-content: space-around;*/
        padding: 15px 0;
        background-color: white;
        border-bottom: 1px solid #e0e0e0;
        gap:20px
    }

    #elcam-logo {
        background-color: rgb(255, 255, 255);
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 30px;
    }    

    #elcam-logo img { width: 75px; height: 75px; }
    #elcam-logo a { font-size: 18px; font-weight: bold; }

    #icon-block-in-nav-bar-second {
        height: 110px;
        background-color: rgb(255, 255, 255); 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: space-between; 
        padding-bottom: 20px;
        margin: 0 30px;
    }

    #icon-block-in-nav-bar-second img { width: 75px; height: 75px; }

    #icon-block-in-nav-bar-second a { font-size: 18px; font-weight: bold; }

    
    .icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
    }
    
    .icon-item .icon {
        width: 40px;
        height: 40px;
        background-color: #f0f0f0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-bottom: 5px;
    }
    
    .icon-item span {
        font-size: 12px;
    }
     
    
    .first-navbar .mobile-menu {
        display: none;
    }
    
    
/* Responsive */
@media (max-width: 768px) {
    .icon-menu {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 15px 10px;
    }
    
    .icon-item {
        min-width: 80px;
    }
    
    .tab-navbar, .tab-filter {
        overflow-x: auto;
    }

    /* Ajoutez !important pour s'assurer que cette règle prend priorité */
    .first-navbar .right-menu {
        display: none !important;
    }
    
    /* Assurez-vous que cet élément existe dans votre HTML */
    .first-navbar .mobile-menu {
        display: block;
    }

}

@media (min-width: 769px) {
    .first-navbar .mobile-menu {
        display: none;
    }
}

    