body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #43cea2, #185a9d);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
}

.container {
  margin-top: 40px;
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

input {
  width: 70%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

button {
  padding: 10px;
  background: #0ce92d;
  color: #333;
  border: none;
  border-radius: 10px;
  margin-left: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  margin-left: 0px;
}

.forecast-list {
  margin-top: 20px;
}

.forecast-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}