/* cspell:disable */

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #00b4db, #0083b0);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 90%;
  max-width: 450px;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  background-color: #0083b0;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:disabled {
  background-color: #ccc;
}

.result-area {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* ตกแต่งส่วนพยากรณ์ล่วงหน้า */
#forecast-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
  margin-top: 25px;
}

.forecast-card {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #eee;
}

.forecast-card .date {
  font-weight: bold;
  font-size: 0.8rem;
  color: #555;
}
.forecast-card .icon {
  font-size: 1.5rem;
  margin: 5px 0;
}
.forecast-card .temp {
  font-size: 0.8rem;
  color: #333;
}
