/* French Menu Specific Styling */
body[lang="fr"] .navbar-nav .nav-link {
    font-weight: 500 !important;
    color: #2c3e50 !important;
    padding: 8px 15px !important;
    transition: all 0.3s ease !important;
}

body[lang="fr"] .navbar-nav .nav-link:hover {
    color: #3498db !important;
    background-color: rgba(52, 152, 219, 0.1) !important;
}

.french-menu-item {
    margin: 0 5px;
}

.french-menu-link {
    font-weight: 500 !important;
    color: #2c3e50 !important;
    padding: 8px 15px !important;
    transition: all 0.3s ease !important;
}

.french-menu-link:hover {
    color: #3498db !important;
    background-color: rgba(52, 152, 219, 0.1) !important;
}

.french-dropdown-item {
    color: #2c3e50 !important;
    padding: 8px 20px !important;
    transition: all 0.3s ease !important;
}

.french-dropdown-item:hover {
    color: #3498db !important;
    background-color: rgba(52, 152, 219, 0.1) !important;
}

/* French Language Switcher Styling */
.french-language-switcher {
    margin-left: 15px;
}

.french-dropdown-toggle {
    font-weight: 500 !important;
    color: #2c3e50 !important;
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    padding: 6px 12px !important;
    transition: all 0.3s ease !important;
}

.french-dropdown-toggle:hover, 
.french-dropdown-toggle:focus {
    color: #3498db !important;
    background-color: #ffffff !important;
    border-color: #3498db !important;
}

.french-dropdown-menu {
    border-radius: 4px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e9ecef !important;
    padding: 8px 0 !important;
}

/* Fix for test fr link */
[lang="fr"] .navbar-nav .nav-link {
    font-weight: 500 !important;
    color: #2c3e50 !important;
    padding: 8px 15px !important;
    transition: all 0.3s ease !important;
}

[lang="fr"] .navbar-nav .nav-link:hover {
    color: #3498db !important;
    background-color: rgba(52, 152, 219, 0.1) !important;
}

/* Styling for the top_fr menu */
body[lang="fr"] .menu-top_fr {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

body[lang="fr"] .menu-top_fr .menu-item {
    margin: 0 5px;
}

body[lang="fr"] .menu-top_fr a {
    font-weight: 500 !important;
    color: #2c3e50 !important;
    padding: 8px 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: block;
}

body[lang="fr"] .menu-top_fr a:hover {
    color: #3498db !important;
    background-color: rgba(52, 152, 219, 0.1) !important;
}

/* Specific styling for the "test fr" link */
body[lang="fr"] .menu-top_fr a[href="#"] {
    font-weight: 500 !important;
    color: #2c3e50 !important;
    padding: 8px 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    border-radius: 4px;
} 