body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #74b9ff, #a29bfe);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.Weather-app {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 25px;
  margin-top: 40px;
  border-radius: 15px;
  width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

header form {
  display: flex;
  gap: 10px;
}

header input[type="Search"] {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
}

header input[type="Submit"] {
  background: #0984e3;
  border: none;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

header input[type="Submit"]:hover {
  background: #74b9ff;
}

main {
  margin-top: 25px;
  text-align: center;
}

main h1 {
  margin: 0;
  font-size: 2.2rem;
}

main p {
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.9;
}

main div {
  font-size: 3.5rem;
  margin-top: 10px;
}

footer {
  margin-top: auto;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px;
  opacity: 0.8;
}

.highlight {
  color: #ff66b2;
  font-weight: 600;
}

footer a {
  color: #ffeaa7;
  font-weight: 600;
}

footer a:hover {
  color: #fab1a0;
}
.forecast {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
}

.forecast-day {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 12px;
  width: 80px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.forecast-date {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.forecast-day img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.forecast-temp {
  font-size: 0.9rem;
}

.forecast-temp .max {
  font-weight: bold;
  color: #ffffff;
}

.forecast-temp .min {
  opacity: 0.7;
  margin-left: 5px;
  color: #ffe6ff;
}
