/* DAWA Address Autocomplete Styling */
/* Optional CSS overrides for konsistent styling */

.dawa-autocomplete-dropdown {
  position: absolute;
  z-index: 1000;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  width: 100%;
  margin-top: -1px;
}

.dawa-autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.dawa-autocomplete-item:last-child {
  border-bottom: none;
}

.dawa-autocomplete-item:hover {
  background-color: #f8f9fa !important;
}

.dawa-autocomplete-item:active {
  background-color: #e9ecef !important;
}

/* Address primary text */
.dawa-autocomplete-item > div:first-child {
  font-weight: 500;
  color: #2c3e50;
  font-size: 1rem;
}

/* Address secondary text */
.dawa-autocomplete-item > div:last-child {
  font-size: 0.875rem;
  color: #7f8c8d;
  margin-top: 4px;
}

/* Scrollbar styling for dropdown */
.dawa-autocomplete-dropdown::-webkit-scrollbar {
  width: 8px;
}

.dawa-autocomplete-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0 0 4px 0;
}

.dawa-autocomplete-dropdown::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.dawa-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Loading state (optional - kan tilføjes senere) */
.dawa-autocomplete-loading {
  padding: 12px 16px;
  text-align: center;
  color: #7f8c8d;
  font-style: italic;
}

/* No results state (optional - kan tilføjes senere) */
.dawa-autocomplete-no-results {
  padding: 12px 16px;
  text-align: center;
  color: #7f8c8d;
  font-style: italic;
}

/* Highlight for selected item via keyboard */
.dawa-autocomplete-item.selected {
  background-color: #f8f9fa;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dawa-autocomplete-dropdown {
    max-height: 250px;
  }

  .dawa-autocomplete-item {
    padding: 10px 12px;
  }

  .dawa-autocomplete-item > div:first-child {
    font-size: 0.9375rem;
  }

  .dawa-autocomplete-item > div:last-child {
    font-size: 0.8125rem;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .dawa-autocomplete-dropdown {
    background: #2c3e50;
    border-color: #34495e;
  }

  .dawa-autocomplete-item {
    border-bottom-color: #34495e;
  }

  .dawa-autocomplete-item:hover {
    background-color: #34495e !important;
  }

  .dawa-autocomplete-item > div:first-child {
    color: #ecf0f1;
  }

  .dawa-autocomplete-item > div:last-child {
    color: #95a5a6;
  }
}
