/* Autocomplete Styles */

.autocomplete-wrapper {
  position: relative;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  margin-top: 0.25rem;
  max-height: 12rem;
  overflow-y: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.autocomplete-item {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.15s ease;
}

.autocomplete-item:hover,
.autocomplete-item--highlighted {
  background-color: var(--bg-secondary, #f3f4f6);
}

.autocomplete-item strong {
  font-weight: 600;
  color: var(--text-primary, #111827);
}

/* Dark theme support */
[data-theme="dark"] .autocomplete-item:hover,
[data-theme="dark"] .autocomplete-item--highlighted {
  background-color: var(--bg-tertiary, #374151);
}

[data-theme="dark"] .autocomplete-item strong {
  color: var(--text-primary, #f9fafb);
}
