/* Companies House Search Autocomplete Styles */

.companies-house-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 400px;
  overflow-y: auto;
  background: white;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  margin-top: -1px;
}

.companies-house-search-results.show {
  display: block;
}

.search-result-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s ease-in-out;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover,
.search-result-item.selected {
  background-color: #f8f9fa;
}

.search-result-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #212529;
}

.search-result-item small {
  font-size: 0.875rem;
  line-height: 1.4;
}

.search-result-item .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}

/* Ensure parent container has position: relative */
.form-group.position-relative {
  position: relative;
}
