.ws-search-suggest {
  position: relative;
}

.ws-search-suggest__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0a0a0d;
  border: 1px solid rgba(255, 128, 206, 0.55);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
  max-height: min(72vh, 540px);
  overflow-y: auto;
}

.ws-search-suggest__section + .ws-search-suggest__section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ws-search-suggest__head {
  padding: 10px 12px;
  background: #2f2f36;
  color: #f0f2f9;
  font: 700 14px/1.3 Inter, system-ui, sans-serif;
}

.ws-search-suggest__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ws-search-suggest__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  text-decoration: none;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ws-search-suggest__item:hover {
  background: rgba(255, 72, 148, 0.12);
}

.ws-search-suggest__item img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.ws-search-suggest__item span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 600 16px/1.2 Inter, system-ui, sans-serif;
}

.ws-search-suggest__item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7de084;
  display: inline-block;
  flex: 0 0 auto;
}

.ws-search-suggest__more,
.ws-search-suggest__all {
  display: flex;
  justify-content: flex-end;
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ws-search-suggest__all {
  justify-content: center;
}

.ws-search-suggest__more a,
.ws-search-suggest__all a {
  text-decoration: none;
  color: #f6f0ff;
  font: 700 15px/1.2 Inter, system-ui, sans-serif;
}

.ws-search-suggest__more a span,
.ws-search-suggest__all a span {
  color: #ff95ce;
}
