/* styles.css */

/* Глобальні стилі для світлої теми */
body {
  font-family: system-ui, sans-serif;
  transition: background-color 0.3s, color 0.3s;
}

select {
  padding: 0.5rem;
  border-radius: 0.375rem;
}

/* Темна тема через клас .dark */
body.dark {
  background: linear-gradient(to top right, #0f172a, #3b82f6);
  color: #fff;
}

.dark input,
.dark textarea,
.dark select {
  background-color: #1f2937;
  color: white;
  border-color: #4b5563;
}

/* Мобільне меню */
#mobile-menu {
  will-change: transform;
}

/* Перемикач теми */
.theme-switcher select {
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
}
.dark .theme-switcher select {
  background-color: #1f2937;
  border-color: #374151;
  color: #fff;
}

.language-switcher select,
.theme-switcher select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #fff;
  color: #1f2937;
  font-size: 0.75rem;
  width: 4rem;
  cursor: pointer;
}

.language-switcher select:focus,
.theme-switcher select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.dark .language-switcher select,
.dark .theme-switcher select {
  background-color: #1f2937;
  color: #fff;
  border-color: #4b5563;
}

.dark .language-switcher select:focus,
.dark .theme-switcher select:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}
