body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  margin: 0;
  padding: 30px;
}
.container {
  max-width: 900px;
  margin: 0 auto;
}
.logo {
  width: 150px;
  margin-bottom: 20px;
}
.search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
#city-input {
  flex: 1;
  padding: 16px;
  border: none;
  border-radius: 15px;
  font-size: 16px;
}
button {
  border: none;
  padding: 16px 28px;
  border-radius: 15px;
  background: #6c63ff;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #5548df;
}
.weather-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.weather-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#city-name {
  margin: 0;
  font-size: 46px;
  color: #304e9a;
}
#current-date-time {
  color: #666;
  margin-top: 8px;
}
.description {
  color: #304e9a;
  text-transform: capitalize;
  margin-top: 10px;
}
#weather-icon img {
  width: 110px;
}
.temperature-section {
  text-align: center;
  margin-top: 20px;
}
#temperature {
  font-size: 110px;
  font-weight: 300;
  color: #304e9a;
}
.unit {
  font-size: 42px;
  vertical-align: top;
}
.feels-like {
  text-align: center;
  color: #666;
  margin-top: 10px;
}
.weather-details {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
}
.weather-details strong {
  display: block;
  margin-top: 5px;
  color: #304e9a;
}
.forecast {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 35px;
}
.forecast-day {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.forecast-date {
  font-weight: 600;
  color: #304e9a;
}
.forecast-icon {
  width: 55px;
  margin: 10px auto;
}
.forecast-temperatures {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.forecast-max {
  color: #304e9a;
  font-weight: 700;
}
.forecast-min {
  color: #888;
}
footer {
  text-align: center;
  margin-top: 35px;
  color: #666;
}
footer a {
  color: #6c63ff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .weather-top {
    flex-direction: column;
    text-align: center;
  }
  .weather-details {
    gap: 40px;
  }
  .forecast {
    flex-wrap: wrap;
  }
  .forecast-day {
    min-width: 80px;
  }
}
