.autocomplete-container {
  position: relative;
  flex: 1;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-top: none;
  border-radius: 0 0 12px 12px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.suggestions:empty {
  display: none;
}

.suggestions:has(div) {
  display: block;
}

.suggestion {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #e0e0e0;
  border-bottom: 1px solid #2a2a4a;
  transition: background 0.2s;
}

.suggestion:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.suggestion:hover {
  background: #2a2a4a;
}

.suggestion .highlight {
  color: #00d4ff;
  font-weight: 600;
}

.suggestion.custom {
  color: #888;
  font-style: italic;
}

.suggestion.custom strong {
  color: #ffd700;
  font-style: normal;
}