/**
 * OpenStreetMap Location Autocomplete Styles
 * Scoped to avoid affecting other UI elements
 */

/* OSM Autocomplete specific items */
.osm-autocomplete-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
}

.osm-location-name {
  font-weight: 600;
  color: #333;
  font-size: 1em;
}

.osm-location-subtext {
  font-size: 0.8em;
  color: #888;
  display: block;
}

/* OpenStreetMap attribution footer */
.osm-autocomplete-footer {
  border-top: 1px solid #e0e0e0;
  margin-top: 4px;
  padding: 6px 12px !important;
  background-color: #f8f9fa;
  pointer-events: auto;
}

.osm-autocomplete-footer a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75em;
  color: #7eb73e;
  text-decoration: none;
}

.osm-autocomplete-footer a:hover {
  color: #5a8a2a;
  text-decoration: underline;
}

.osm-autocomplete-footer svg {
  flex-shrink: 0;
}
