body {
  background-color: #f9f7fe;
  font-family: sans-serif;
}

.container {
  max-width: 600px;
  margin: 60px auto 0;
  background: white;
  padding: 30px 30px 0;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 36px;
}

h2 {
  margin: 0 0 5px;
  font-size: 28px;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
}

.remove-btn:hover {
  color: #e74c3c;
}

#cities {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

select {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  font-size: 18px;
}

.city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.25s ease, background 0.2s ease;
}

.drag-handle {
  cursor: grab;
  font-size: 20px;
  margin-right: 10px;
  user-select: none;
  color: #888;
}

.drag-handle:active {
  cursor: grabbing;
}

.city-dragging {
  opacity: 0.6;
  transform: scale(1.02);
  background: #f0f0f0;
}

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

.date {
  opacity: 0.7;
}

.time {
  font-size: 48px;
  font-weight: bold;
}

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

a {
  text-decoration: none;
  color: #5dade2;
  transition: color 0.2s ease;
}

a:hover {
  color: #3498db;
}

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