body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.city {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  padding: 30px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

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

.city-info {
  text-align: left;
}

.city h2 {
  margin: 0 0 5px 0;
  font-size: 24px;
}

.date {
  opacity: 0.7;
  font-size: 14px;
  margin: 0;
}

.time {
  font-size: 40px;
  font-weight: bold;
  text-align: right;
  margin-left: 80px;
}

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

h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
}

select {
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid #667eea;
  border-radius: 8px;
  cursor: pointer;
  background: white;
  min-width: 250px;
  transition: all 0.3s ease;
}

select:hover {
  border-color: #764ba2;
}

select:focus {
  outline: none;
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.1);
}

footer {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.all-cities-link {
  font-size: 16px;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: none; /* ← Initial versteckt! */
}

.all-cities-link.show {
  display: inline-block; /* ← Wird sichtbar mit class "show" */
}

.all-cities-link:hover {
  background: rgba(255, 255, 255, 0.3);
}
