/* Styles pour le sélecteur de langue */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 5px 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.language-btn:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.language-btn.active {
    opacity: 1;
    font-weight: 700;
    background-color: rgba(0, 102, 51, 0.1);
    color: var(--primary-color);
}

.language-divider {
    width: 1px;
    height: 15px;
    background-color: var(--primary-color);
    opacity: 0.3;
    margin: 0 5px;
}

/* Adaptation pour mobile */
@media (max-width: 768px) {
    .language-selector {
        position: absolute;
        top: 50%;
        right: 70px;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .language-btn {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 4px 6px;
    }
}
