body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #4c51bf, #6b46c1);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  text-align: center;
  max-width: 400px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
}
button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background-color: #ecc94b;
  color: #2d3748;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
button:hover {
  background-color: #d69e2e;
}
.weather-info {
  margin-top: 20px;
}
.temperature {
  font-size: 2.5rem;
  font-weight: bold;
}
.city {
  font-size: 1.2rem;
  margin-top: 10px;
}
.details {
  font-size: 1rem;
  margin-top: 5px;
}
.loading-overlay {
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  z-index: 1000;
}
