/* NLMaps geocoder styles */
.nlmaps-geocoder-control-container {
  position: absolute;
  top: 10px;
  left: 50px;
  right: 50px;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.nlmaps-geocoder-control-search {
  width: 100%;
  max-width: 400px;
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.nlmaps-geocoder-control-search input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: #1f2937;
  background: white;
  border-radius: 8px 0 0 8px;
}

.nlmaps-geocoder-control-search input[type="text"]::placeholder {
  color: #9ca3af;
}

.nlmaps-geocoder-control-button {
  background: white;
  border: none;
  border-left: 1px solid #e5e7eb;
  padding: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #6b7280;
}

.nlmaps-geocoder-control-button:hover {
  background: #f9fafb;
  color: #374151;
}

#nlmaps-geocoder-control-results {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 2px;
  overflow: hidden;
}

#nlmaps-geocoder-control-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#nlmaps-geocoder-control-results li {
  border-bottom: 1px solid #f3f4f6;
}

#nlmaps-geocoder-control-results li:last-child {
  border-bottom: none;
}

#nlmaps-geocoder-control-results a {
  display: block;
  padding: 10px 14px;
  font-size: 0.8125rem;
  color: #374151;
  text-decoration: none;
  cursor: pointer;
}

#nlmaps-geocoder-control-results a:hover,
.nlmaps-geocoder-result-selected a {
  background: #f3f4f6;
}

.nlmaps-hidden {
  display: none !important;
}
