/* General styles */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #74ebd5, #ACB6E5);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Container */
.container {
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  width: 320px;
}

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

.search-box input {
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 10px 0 0 10px;
  outline: none;
  flex: 1;
}

.search-box button {
  padding: 10px;
  border: none;
  background: #4A90E2;
  color: #fff;
  font-weight: bold;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.search-box button:hover {
  background: #357ABD;
}

/* Weather card */
.weather-card {
  margin-top: 20px;
}

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

.error {
  color: red;
  font-weight: bold;
  margin-top: 15px;
}

.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 400px) {
  .container {
    width: 90%;
  }
}
