.flight-widget {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  max-width: 1000px;
}

.row {
  display: flex;
  gap: 10px;
}

.field {
  position: relative;
  flex: 1;
}

.suggestions {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  z-index: 999;
  display: none;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
}

.suggestion-item:hover {
  background: #000;
  color: #fff;
}

.flight-card {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  align-items: center;
  border: 1px solid #eee;
  padding: 16px;
  margin-top: 12px;
  border-radius: 6px;
}

.route {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.cta {
  text-align: center;
}

.call-btn {
  background: #ff5722;
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
}
#flight-results-page {
  max-width: 1200px;
  margin: auto;
}

.price {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
