body {
  margin: 0;
  padding: 0;
  font-family: 'Rubik', sans-serif;
  background: url('https://as2.ftcdn.net/jpg/03/00/94/69/1000_F_300946931_kSR84OqudEhsmBZH47HU6ud7aZIDMjEx.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

.container {
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  margin-bottom: 30px;
}

select, button {
  margin: 10px 0;
  border-radius: 12px !important;
}

button {
  background-color: #0d6efd;
  color: white;
}

.forecast-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  color: #fff;
  width: 160px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h4 {
  font-size: 1rem;
  margin: 10px 0 5px;
}

.card {
  animation: fadeIn 0.6s ease-in;
  transition: all 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

