/* body {
  background-color: lightblue;
} */
.search-box {
  display: flex;
  justify-content: center;
}
.app-container {
  text-align: center;
}
#city-input,
#search-btn {
  padding: 10px;
  font-size: large;
}

#search-btn {
  background-color: black;
  border: 2px solid black;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  cursor: pointer;
}

#search-btn:hover {
  font-weight: 600;
}

h4 {
  text-align: center;
}

body {
  min-height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, sans-serif;
}

/* .weather-card-colddd > * {
  font-size: 25px;
  margin: none;
} */

.weather-card-cold {
  background: lightblue;
  padding: 24px 28px;
  border-radius: 16px;
  width: 500px;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  margin: none;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.weather-card-colddd {
  background: rgb(78, 78, 206);
  padding: 24px 28px;
  border-radius: 16px;
  width: 500px;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  margin: none;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.weather-card-hot {
  background: orange;
  padding: 24px 28px;
  border-radius: 16px;
  width: 500px;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  margin: none;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#forecast-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.forecast-card,
#current-weather {
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  border: 2px solid black;
}

.forecast-card {
  font-size: 14px;
}

#weatherwrap {
  border-radius: 20px;
  padding: 30px;
}
