body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to right, #078318, #47747c);
}

.container {
  background: rgba(146, 21, 21, 0.079);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  width: 350px;
  text-align: center;
  color: #eee7ed;
}

h1 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

input {
  padding: 10px;
  border: none;
  border-radius: 8px;
  width: 65%;
  margin-right: 5px;
  outline: none;
}

button {
  padding: 10px 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  opacity: 0.85;
}

#weather-card {
  background: rgba(101, 15, 15, 0.3);
  padding:20px;
  border-radius: 15px;
  margin-top: 20px;
}

#favorites button {
  background: #786723;
  color: #000;
  margin: 5px;
}

#favorites button:hover {
  background: #8a7521;
}
.hidden {
  display: none;
}
