/*
──────────────────────────────────────────────────────────────────
Copyright (c) 2026 Ilhom Abdullayev (@aib81).
Proyekt: AT MEDSERT — sertifikatsiya tizimi (ISO 13485).
Email: ilhom8108@gmail.com · Telegram: @aib81 (id: 834760045)

Mualliflik huquqi muallifga tegishli. Without written permission —
no copying, forking, or commercial use is allowed.
──────────────────────────────────────────────────────────────────
*/
/* Theme / language switcher controls. */

.switcher {
  display: flex;
  gap: var(--space-1);
  align-items: center;
}

.switcher__label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-right: var(--space-1);
}

.switcher__group {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-alternate);
}

.switcher__group form {
  margin: 0;
  display: inline-flex;
}

.switcher__btn {
  padding: var(--space-1) var(--space-2);
  background: transparent;
  color: var(--text-primary);
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: 500;
  min-height: 2rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.switcher__btn:hover,
.switcher__btn:focus-visible {
  background: var(--bg-secondary);
  color: var(--text-header);
}

.switcher__btn--active {
  background: var(--accent);
  color: #ffffff;
}

.switcher__btn--active:hover,
.switcher__btn--active:focus-visible {
  background: var(--accent-hover);
  color: #ffffff;
}

.theme-switcher {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.theme-switcher__current {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.theme-switcher__name {
  color: var(--text-header);
  font-weight: 600;
  text-transform: capitalize;
}
