body {
  background: radial-gradient(328px at 2.9% 15%, rgb(191, 224, 251) 0%, rgb(232, 233, 251) 25.8%, rgb(252, 239, 250) 50.8%, rgb(234, 251, 251) 77.6%, rgb(240, 251, 244) 100.7%);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 30px;
  letter-spacing: 1px;
}

h2 {
  margin: 0 0 8px;
  font-size: 26px;
  color: #34495e;
  font-weight: 600;
}

select {
  display: block;
  width: 100%;
  font-size: 16px;
  border-radius: 8px;
  padding: 14px 16px;
  border: 2px solid #ddd;
  background: white;
  margin-bottom: 30px;
  cursor: pointer;
  transition: border-color 0.3s;
}

select:focus {
  outline: none;
  border-color: #3498db;
}

.container {
  max-width: 650px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

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

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

.date {
  opacity: 0.6;
  font-size: 15px;
  margin-top: 5px;
}

.time {
  font-size: 44px;
  font-weight: 700;
  color: #e74c3c;
  text-align: right;
}

.time small {
  font-size: 22px;
  vertical-align: middle;
  line-height: 44px;
  color: #7f8c8d;
}

footer {
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 30px;
}

footer a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
}

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

#cities a {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

#cities a:hover {
  text-decoration: underline;
}