@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Sarabun', sans-serif;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
  color: #0B4A8F;
  background-color: #ffffff;
  font-weight: 700;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}

.chip.active, .toggle-side.active-up, .toggle-side.active-down, .result-btn.active-ok, .result-btn.active-no {
  transform: scale(1.02);
}