body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0ea5e9, #1e3a8a);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  margin: 0;
}

.container {
  background: rgba(0,0,0,0.4);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 320px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

input {
  padding: 10px;
  width: 70%;
  border-radius: 5px;
  border: none;
}

button {
  padding: 10px;
  margin-top: 10px;
  background: #22c55e;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#weatherResult {
  margin-top: 20px;
}