* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.container h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 700;
}

select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-size: 1.1rem;
  margin-bottom: 25px;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

select:hover {
  background: rgba(255, 255, 255, 0.28);
}

option {
  color: #000;
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 18px 20px;
  border-radius: 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.city:hover {
  background: rgba(255, 255, 255, 0.22);
}

.left h2 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}

.date {
  font-size: 0.95rem;
  opacity: 0.85;
  text-align: left;
}

.time {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.time small {
  font-size: 1rem;
  vertical-align: middle;
}
.allCities {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  /* smooth transition */
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.allCities:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
footer {
  margin-top: 25px;
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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