body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to top, #a8edea, #fed6e3);
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #00796b;
}

.location-select {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  font-weight: bold;
  margin-bottom: 10px;
}

select, button {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #00796b;
  margin-bottom: 20px;
  width: 100%;
  max-width: 300px;
}

button {
  background-color: #00796b;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #004d40;
}

#weatherResult {
  margin-top: 30px;
}

#weatherDetails {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  font-size: 1.1em;
}

#weatherDetails p {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

#weatherDetails p::before {
  content: "🌡️";
  margin-right: 10px;
}

/* 반응형 디자인 */
@media (max-width: 600px) {
  h1 {
      font-size: 2em;
  }

  select, button {
      width: 100%;
  }

  #weatherDetails {
      font-size: 1em;
  }
}