/* --------------------------------------------------
    Autocomplete dropdown (shared style)
    Applies to hotel/flight/activity search engines
----------------------------------------------------- */

ul.city-list {
  position: absolute;
  width: 100%;
  list-style: none;
  padding: 0;
  margin-top: 6px;
  background: #fff;
  color: #0f172a;
  z-index: 9999;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  max-height: 360px;
  overflow-y: auto;
}

li.city-item {
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #0f172a;
  background: #fff;
}

li.city-item:hover {
  background: #f8fafc;
  color: #0f172a;
}

li.city-item:last-child {
  border-bottom: 0;
}

/* Optional structure used by the unified JS renderer */
.city-item .cv-ac-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
  background: #eff6ff;
  color: #2563eb;
}

.city-item .cv-ac-icon--hotel {
  background: #f0fdf4;
  color: #16a34a;
}

.city-item .cv-ac-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.city-item .cv-ac-subtitle {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.2;
}

