/* Autocomplete de Aeroportos - Versão Simples */
.airport-suggestions {
  position: absolute;
  background: white;
  border: 2px solid #0066cc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 99999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: none;
  width: 100%;
  margin-top: -1px;
}

.airport-suggestions.active {
  display: block;
}

.airport-item {
  padding: 8px 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-size: 13px;
}

.airport-item:hover {
  background-color: #e3f2fd;
}

.airport-item:last-child {
  border-bottom: none;
}

.airport-code {
  font-weight: bold;
  color: #0066cc;
  margin-right: 6px;
}

.airport-info {
  color: #666;
}

.no-airports {
  padding: 10px;
  text-align: center;
  color: #999;
  font-size: 12px;
}