body {
  font-family: Arial, sans-serif;
  background: url("https://images.unsplash.com/photo-1580193769210-b8d1c049a7d9?q=80&w=1174&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
    no-repeat center center/cover;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 150vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 900px;
}

h1 {
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

input {
  padding: 10px;
  width: 60%;
  border: none;
  border-radius: 8px;
  outline: none;
}

button {
  padding: 10px 20px;
  margin-left: 10px;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  color: #2193b0;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background-color: #eee;
}

/* Glassmorphism Weather Card */
#weatherResult {
  margin-top: 20px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.forecast {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.forecast-item {
  background: rgba(255, 255, 255, 0.2);
  margin: 10px;
  padding: 15px;
  border-radius: 15px;
  width: 100px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-in-out;
}

.forecast-item:hover {
  transform: scale(1.05);
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
  input {
    width: 70%;
    margin-bottom: 10px;
  }
  button {
    width: 25%;
  }
  .forecast-item {
    width: 100px;
  }
}

