body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;body {
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  display: none;
}

.city-card {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
}
.city-time {
  font-size: 1.2rem;
  font-weight: bold;
}
.city-date {
  font-size: 0.9rem;
  color: #555;
}

  align-items: flex-start;
}

.container {
  margin-top: 30px;
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 800px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.search-container {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

#cityInput {
  padding: 8px;
  width: 250px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 8px 12px;
  margin-left: 10px;
  border: none;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #0056b3;
}

#suggestions {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

#suggestions div {
  padding: 8px;
  cursor: pointer;
}

#suggestions div:hover {
  background: #f1f1f1;
}

.city {
  margin-bottom: 15px;
  padding: 10px;
  border-left: 5px solid #007bff;
  background: #f9f9f9;
  border-radius: 5px;
}

.city strong {
  font-size: 16px;
}

.timeline-container {
  position: relative;
  margin-top: 30px;
  height: 30px;
  background: linear-gradient(
    to right,
    #ff4d4d 0% 20%,   /* night */
    #ffd633 20% 35%,  /* morning */
    #5cd65c 35% 70%,  /* day */
    #ffa31a 70% 85%,  /* evening */
    #ff4d4d 85% 100%  /* night */
  );
  border-radius: 8px;
  overflow: hidden;
}

#marker {
  position: absolute;
  top: -6px;
  width: 12px;
  height: 42px;
  background: #000;
  border-radius: 4px;
}
