/**
 * Google Maps Autocomplete Dropdown Styles — snippet 3117
 */

/* Pac container (Google's autocomplete dropdown) */
.pac-container {
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-family: inherit;
  margin-top: 4px;
  z-index: 99999 !important;
  background-color: #ffffff;
  overflow: hidden;
}

.pac-container::after {
  /* Hide the "Powered by Google" logo if desired — remove this block to show it */
  background-image: none !important;
  height: 0;
  padding: 0;
}

.pac-item {
  padding: 10px 14px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  border-top: 1px solid #f0f0f0;
  line-height: 1.5;
  transition: background-color 0.15s ease;
}

.pac-item:first-child {
  border-top: none;
}

.pac-item:hover,
.pac-item-selected {
  background-color: #f5fffe;
}

.pac-item-query {
  font-size: 14px;
  font-weight: 600;
  color: #00ffd4;
  padding-right: 4px;
}

.pac-icon {
  margin-top: 2px;
  opacity: 0.5;
}

.pac-matched {
  font-weight: 700;
  color: #00ffd4;
}
