body {
  background-color: #f9f7fe;
  font-family: "Inter", sans-serif;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  box-sizing: border-box;
}

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

.clock-icon {
  width: 40px;
  height: 40px;
  color: #4b0082;
  margin: 0 auto 20px;
  display: block;
}

h1 {
  font-size: 36px;
  color: #4b0082;
  margin-bottom: 20px;
}

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

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

select:hover {
  border-color: #4b0082;
  cursor: pointer;
}

.city {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}
.city-info {
  text-align: left;
}

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

.date {
  opacity: 0.7;
}

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

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

footer {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
}

footer a {
  color: #4b0082;
  text-decoration: none;
}

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