body {
  font-family: 'Kanit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

#weather-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#weather-list > div {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease-in-out;
}

#weather-list > div h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

#weather-list > div p {
  margin: 5px 0;
}

footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }

  #weather-list > div {
    padding: 15px;
  }
}

.select-wrapper {
  margin-bottom: 20px;
  text-align: center;
}

#province-select {
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
}
