/* Global Styles */
body {
  background: radial-gradient(circle at top left, #1c0633, #0d0c26);
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px;
}

h1 {
  font-size: 42px;
  color: #f65282;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.select-wrapper {
  max-width: 400px;
  margin: 0 auto 30px;
  text-align: center;
}

select {
  width: 100%;
  font-size: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  background: white;
  color: #333;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  appearance: none;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.city:last-child {
  border-bottom: none;
}

.city h2 {
  font-size: 20px;
  color: #391fad;
  font-weight: 600;
  margin: 0 0 4px;
}

.city .date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.city .time {
  font-size: 40px;
  font-weight: bold;
  color: #222;
}

.city .time small {
  font-size: 18px;
  color: #666;
  margin-left: 4px;
  vertical-align: middle;
}

footer {
  text-align: center;
  font-size: 16px;
  color: #bbb;
  margin-top: 50px;
  padding: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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