body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f5f5f5;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 25px;
}

.search-container {
  margin-bottom: 20px;
}

.city-search {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.city-select {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 20px;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
}

.time-display {
  font-size: 18px;
  padding: 20px;
  background-color: #e3f2fd;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 25px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.default-cities {
  margin-top: 30px;
}

.default-cities h2 {
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  color: #34495e;
  margin-bottom: 20px;
}

.city-clock {
  padding: 18px;
  margin-bottom: 18px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 5px solid #4caf50;
  transition: transform 0.2s;
}

.city-clock:hover {
  transform: translateX(5px);
}

.city-clock h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #2c3e50;
}

.city-time {
  font-size: 16px;
  color: #7f8c8d;
}

/* Responsive design */
@media (max-width: 600px) {
  .container {
    padding: 15px;
  }

  .city-clock {
    padding: 15px;
  }

  .city-select {
    font-size: 14px;
  }
}
.search-results {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
  background: white;
}

.search-result-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.search-result-item:hover {
  background-color: #f0f8ff;
}

.city-select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 20px;
  height: auto;
}
