/* Sélecteur de langue + boutons simples — style minimal */
/* Langues masquées jusqu'à traduction — pour réactiver : remplacer "none" par "flex" ci-dessous */
.lang-switcher {
    display: none !important;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn {
    display: inline-block;
    padding: 0.35rem 0.6rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
}

.lang-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.lang-btn.active {
    background: #06b6d4;
    color: #fff;
    border-color: #06b6d4;
}

/* Boutons simples (réutilisables) */
.btn-simple {
    display: inline-block;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

.btn-simple-primary {
    color: #fff;
    background: #06b6d4;
    border-color: #06b6d4;
}

.btn-simple-primary:hover {
    background: #0891b2;
    border-color: #0891b2;
}

.btn-simple-secondary {
    color: #374151;
    background: #f3f4f6;
    border-color: #d1d5db;
}

.btn-simple-secondary:hover {
    background: #e5e7eb;
}

.btn-simple:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
