body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to top right, #87ceeb, #f0f8ff);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: #00aaff;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #008ecc;
}

.weather-info img {
  width: 80px;
  height: 80px;
}

.hidden {
  display: none;
}
