/* General body */
body {
  font-family: 'Poppins', sans-serif;
  background: #fef6f9; /* soft pinkish background */
  color: #333;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* Container */
.container {
  max-width: 600px;
  margin: auto;
}

/* Heading */
h1 {
  font-size: 2.5rem;
  color: #ff6f91; /* soft rose */
  margin-bottom: 20px;
}

/* Dropdown */
select {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #ffb6c1; /* soft pink border */
  background-color: #fff0f5; /* lavender blush */
  color: #333;
  margin-bottom: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

select:hover {
  border-color: #ff6f91;
  background-color: #ffe6f0;
}

/* City cards */
.city {
  background: #fff;
  margin: 15px 0;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(255, 111, 145, 0.2); /* soft pink shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(255, 111, 145, 0.3);
}

/* City title */
.city h2 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  color: #ff4d6d;
}

/* Date and time */
.date, .time {
  font-size: 1.2rem;
  margin: 5px 0;
  color: #555;
}

/* Selected city link */
#selected-city a {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 15px;
  border-radius: 12px;
  text-decoration: none;
  background-color: #ffb6c1;
  color: #fff;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

#selected-city a:hover {
  background-color: #ff6f91;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #999;
}

footer a {
  color: #ff6f91;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
