body {
  font-family: "Quicksand", sans-serif;
  display: flex;
  flex-direction: column;
  background-color: papayawhip;
}

.shadow {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 40px auto;
  padding: 30px;
  background: linear-gradient(to bottom right, #ffffff, #f0f8ff);
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.shadow:hover {
  transform: scale(1.01);
}

header,
h1 {
  display: flex;
  justify-content: center;
}

.searchInput {
  border: none;
  border-radius: 5px;
  background-color: #dcdae2;
  padding: 10px 30px;
}

.submitButton {
  padding: 10px 15px;
  margin-left: 10px;
  margin-top: 50px;
  background-color: aquamarine;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submitButton:hover {
  background-color: mediumaquamarine;
}

/* 🔥 Temperatura e icono centrados */
.weather-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.weather-app-icon {
  width: 50px;
  height: 50px;
}

.currentTemp {
  font-size: 30px;
  margin: 0;
}

/* 🔥 Detalles centrados debajo */
.weather-app-details {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

/* 🔥 Día y hora en una línea */
.day-time {
  text-align: center;
  font-size: 18px;
  margin: 5px 0;
}

.minAndMaxTemp {
  font-size: 18px;
}

/* 🔥 Pronóstico de varios días */
.weatherForecast ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.weatherForecast li {
  border: solid 1px;
  border-radius: 5px;
  padding: 8px;
  background-color: #ffffffdd;
  transition: background 0.3s;
}

.weatherForecast li:hover {
  background-color: rgb(250, 220, 194);
}

footer {
  margin-top: auto;
  text-align: left;
  padding: 10px 0;
  width: 100%;
  font-size: 14px;
  color: #949494;
}

