body {
  font-family: Arial, sans-serif;
  margin: 2rem;
  background: #f0f0f0;
}

.container {
  max-width: 400px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 1rem;
}

input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  background: #6b33f2;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #5a28d1;
}

.weather-result {
  margin-top: 1rem;
}

.weather-result p {
  margin: 0.5rem 0;
}