body {
  font-family: Arial, sans-serif;
  background: #e0f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

input {
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #0056b3;
}

.weather-box {
  margin-top: 20px;
}

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

.weather-card {
  background: #f0f8ff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  color: #333;
}

.weather-card p {
  margin: 5px 0;
}

.refresh-btn {
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.refresh-btn:hover {
  background-color: #0056b3;
}

.error-box {
  background: #fff3cd;
  color: #856404;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
}

@media (max-width: 480px) {
  .container {
    padding: 20px;
  }

  .weather-card p {
    font-size: 14px;
  }
}