.airport-typeahead {
  position: relative;
}

.airport-typeahead-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

.airport-typeahead-dropdown.hidden {
  display: none;
}

.airport-typeahead-option {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.8rem 0.9rem;
  cursor: pointer;
  text-align: left;
}

.airport-typeahead-option + .airport-typeahead-option {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.airport-typeahead-option:hover,
.airport-typeahead-option.is-active {
  background: rgba(14, 165, 233, 0.08);
}

.airport-typeahead-label {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.airport-typeahead-sublabel {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.35;
}
