body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #74ebd5, #acb6e5);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 50px 10px;
  color: #333;
}

.container {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

input {
  padding: 10px;
  flex: 1;
  min-width: 180px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}

button {
  padding: 10px 15px;
  border: none;
  background-color: #4caf50;
  color: white;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

button:hover {
  background-color: #45a049;
}

.forecast-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.weather-card {
  padding: 15px;
  border-radius: 10px;
  width: 150px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.weather-card img {
  width: 80px;
}

footer {
  margin-top: 30px;
  text-align: center;
  color: white;
}

footer p {
  margin: 0;
}

footer a {
  color: white;
  text-decoration: underline;
}