/* Custom Autocomplete Dropdown Styles */
.doula-search-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doula-autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffefe4;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 2px;
}

.doula-autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
  font-size: 14px;
  line-height: 1.4;
  color: #000;
}

.doula-autocomplete-item:last-child {
  border-bottom: none;
}

.doula-autocomplete-item:hover,
.doula-autocomplete-item.selected {
  background-color: #f5e6d3;
  color: #000;
}

.doula-autocomplete-item.selected {
  background-color: #f0d9c2;
  font-weight: 500;
  color: #000;
}

/* Loading state */
.doula-autocomplete-loading {
  padding: 12px 16px;
  text-align: center;
  color: #000;
  font-style: italic;
}

.doula-autocomplete-loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-top: 2px solid #8b4513;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* No results state */
.doula-autocomplete-no-results {
  padding: 12px 16px;
  text-align: center;
  color: #000;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .doula-autocomplete-dropdown {
    max-height: 150px;
  }
  
  .doula-autocomplete-item {
    padding: 10px 12px;
    font-size: 13px;
  }
}
