body {
  background: #ffe0ec;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease;
}

.container {
  max-width: 700px;
  margin: 60px auto;
  background: white;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}

.container:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

h1 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 30px;
  color: #e91e63;
  transition: color 0.3s ease;
}

select {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e91e63;
  font-size: 18px;
  margin-bottom: 30px;
  transition: border-color 0.3s ease;
}

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

.city {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.city:hover {
  transform: scale(1.01);
}

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

h2 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #333;
}

.date {
  opacity: 0.6;
  font-size: 16px;
}

.time {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.time small {
  font-size: 18px;
  vertical-align: middle;
  line-height: 36px;
}

footer {
  margin: 50px 0 20px;
  text-align: center;
  font-size: 18px;
  color: rgba(0,0,0,0.5);
}

footer a {
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #c2185b;
  text-decoration: underline;
}

/* Pink back link */
.back-link {
  display: inline-block;
  margin-top: 30px;
  color: #e91e63;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #c2185b;
}
