.weather-box {
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  max-width: 95%;
  margin: 20px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-family: "Vazirmatn", sans-serif;
  color: #333;
}

.weather-box h2 {
  text-align: center;
  font-size: 22px;
  color: #227669;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1px;
}

.day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #f0f7f6;
  border-radius: 12px;
  padding: 20px 25px;
  margin-top: 18px;
  box-shadow: 0 4px 10px rgba(34, 118, 105, 0.1);
  transition: background-color 0.3s ease;
}

.day:hover {
  background-color: #d6e9e7;
}

.day img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  border-radius: 50%;
  background: white;
  padding: 8px;
}

.day div {
  font-size: 13px;
  line-height: 2.5;
  font-weight: 600;
  color: #227669;
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

select {
  padding: 10px 12px;
  font-size: 13px;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

select:hover,
select:focus {
  border-color: var(--primary-color);
  outline: none;
}

button {
  padding: 12px 20px;
  font-size: 1.1rem;
  border: none;
  background-color: #227669;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--primary-color);
}

@media screen and (min-width: 768px) {
  .weather-box {
    padding: 30px 40px;
  }
  .day {
    flex-direction: row;
  }
  .day img {
    width: 80px;
    height: 80px;
  }
  .day div {
    font-size: 14px;
  }
}
