/* Sélecteur de langue Skillesia */

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.lang-switcher .lang-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: transparent;
  color: #6b7280;
  transition: background 0.2s, color 0.2s;
}

.lang-switcher .lang-btn:hover {
  color: #111827;
}

.lang-switcher .lang-btn.active {
  background: #fff;
  color: #203a7c;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Footer / dark backgrounds */
footer .lang-switcher,
.topnav .lang-switcher,
.auth-gate .lang-switcher {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

footer .lang-switcher .lang-btn,
.topnav .lang-switcher .lang-btn {
  color: rgba(255, 255, 255, 0.75);
}

footer .lang-switcher .lang-btn.active,
.topnav .lang-switcher .lang-btn.active {
  background: rgba(255, 255, 255, 0.95);
  color: #203a7c;
}

.nav-actions,
.topbar-actions,
.form-header,
.topnav .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#modal-profile-settings .profile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
