.search-wrapper {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #929292;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 320px;
  overflow-y: auto;
}

.search-dropdown[hidden] {
  display: none;
}

.search-dropdown__group-label {
  padding: 8px 12px 4px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  background: #f6f6f6;
  border-top: 1px solid #e5e5e5;
  pointer-events: none;
}

.search-dropdown__group-label:first-child {
  border-top: none;
}

.search-dropdown__option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: #161616;
}

.search-dropdown__option:hover,
.search-dropdown__option:focus {
  background: #f0f0fb;
  outline: 2px solid #000091;
  outline-offset: -2px;
}

.search-dropdown__empty {
  padding: 12px 16px;
  color: #666;
  font-style: italic;
}
