/* Styles pour le sélecteur de langue dans le menu */
.menu-item-language {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}

.menu-item-language select {
    padding: 8px 30px 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: transparent;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 100px;
}

.menu-item-language select:hover,
.menu-item-language select:focus {
    background-color: rgba(0, 0, 0, 0.05);
    outline: none;
}

.menu-item-language select option {
    padding: 8px;
    background-color: #fff;
    color: #333;
}

@media (max-width: 768px) {
    .menu-item-language {
        margin: 10px 0;
        width: 100%;
    }
    
    .menu-item-language select {
        width: 100%;
        padding: 10px;
        background-color: #f5f5f5;
        border: 1px solid #ddd;
    }
}

#google_translate_element2 {
    display: none;
} 