/* Styles pour les boutons de langue - Design original */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #9ca3af;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.lang-btn.active {
    background: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
}

/* Responsive */
@media (max-width: 768px) {
    .language-switcher {
        gap: 6px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 35px;
    }
}

