.searchbar { position: relative; }
.ve-suggest {
  position: absolute; left: 0; right: 0; top: calc(100% + 13px);
  margin: 0; padding: 0; list-style: none;
  border: 1px solid #eee; 
  border-radius: 12px; 
  background: #fff; display: none;
  overflow: hidden; 
  box-shadow: 0 8px 24px rgba(0,0,0,.08); 
  z-index: 9999;
}
.ve-suggest li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; cursor: pointer; border-bottom: 1px solid #f2f2f2;
}
.ve-suggest li:last-child { border-bottom: none; }
.ve-suggest li.ve-active { background: rgba(0,0,0,.05); }
.ve-suggest img { width: 40px; height: 46px; object-fit: cover; border-radius: 4px; flex: 0 0 40px; }
.ve-suggest .ve-title { line-height: 1.2; }

/* Подсказки (светлая тема уже есть) */
.dark-mode .ve-suggest {
  background: #1e1e1e;                /* фон списка */
  border-color: #333;                 /* рамка */
  box-shadow: 0 8px 24px rgba(0,0,0,.6);
}

.dark-mode .ve-suggest li {
  border-bottom: 1px solid #333;
}

.dark-mode .ve-suggest li.ve-active {
  background: rgba(255,255,255,.08);  /* hover/выбор */
}

.dark-mode .ve-suggest .ve-title {
  color: #eee;                        /* текст */
}
