#search-results-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  background: white;
  border: 1px solid rgba(204, 204, 204, 1);
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0.5rem;
  box-shadow: var(--drop-shadow-medium);
  max-height: 50vh;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.search-item {
  position: relative;
  z-index: 1;
  padding: 0.5rem;
}

.search-item:hover {
  background-color: rgba(181, 94, 248, 0.05);
}

.search-item a {
  text-decoration: none;
  color: #000000;
  display: block;
  font-weight: var(--normal-font-weight);
}

.search-item a strong {
  font-weight: var(--bold-font-weight);
  color: #0405c1;
}

.search-more {
  padding: 0.5rem 0.75rem;
  text-align: center;
  background: rgba(242, 242, 255, 1);
  font-weight: var(--bold-font-weight);
  transition: background-color 0.2s;
}

.search-item:hover:not(.active) {
  background-color: rgba(181, 94, 248, 0.05);
}

.search-more a {
  text-decoration: none;
  color: #7f00f5;
  display: block;
}

.search-no-results {
  padding: 0.75rem 1rem;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

.search-item.active,
.search-more.active {
  background-color: #c0c0c0 !important;
  transform: none;
  box-shadow: none;
  border-left: none;
}

.search-item.active a,
.search-more.active a {
  font-weight: inherit;
  color: inherit;
}
