:root {
  --brand-blue: #0065ab;
  --brand-blue-alt: #0082df;
  --brand-gold: #cda349;
  --brand-gold-alt: #b98e2f;
  --skel-bg: #dadada;
}


/* Autocomplete Suggestions */
.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 4px;
}

.location-suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.location-suggestion-item:hover,
.location-suggestion-item.active {
  background-color: #f8f9fa;
}

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

.suggestion-main-text {
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
  font-size: 16px;
}

.suggestion-secondary-text {
  font-size: 12px;
  color: #666;
}

.fields,
.btn-wrap {
  display: flex;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 16px;
  justify-content: center;
}

.field-wrap {
  flex-grow: 1;
  position: relative;
}

.location-input,
.filter-field {
  font-size: 16px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}


.location-search-btn {
  background: var(--brand-blue);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 400ms ease;
  width: initial;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  text-transform: uppercase;
}

.location-search-btn:hover {
  background: var(--brand-blue-alt);
}
