* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background-color: #f9f7fe;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 600px;
}

h1 {
  text-align: center;
  font-size: 34px;
  color: #272044;
  margin-bottom: 20px;
}

select {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #ffffff;
  margin-bottom: 30px;
  color: #272044;
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.city:not(:last-child) {
  border-bottom: 1px dashed #e6e6e6;
}

h2 {
  font-size: 24px;
  color: #272044;
}

.date {
  font-size: 14px;
  color: rgba(39, 32, 68, 0.6);
  margin-top: 4px;
}

.time {
  font-size: 38px;
  font-weight: bold;
  color: #272044;
}

.time small {
  font-size: 16px;
  font-weight: normal;
  vertical-align: middle;
  margin-left: 2px;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-top: 25px;
  padding-bottom: 20px;
}

footer a {
  color: #5850ec;
  text-decoration: underline;
}

footer a:hover {
  color: #312e81;
}
