.block-kit-suggest-panel {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  border-radius: 3px;
  background-color: var(--color-bg-1);
  border: 1px solid var(--color-border-2);
  box-shadow: 0 0 4px var(--color-border-2);
  border-radius: 5px;
  box-sizing: border-box;
  color: var(--color-text-1);
  font-size: 13px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 5px 7px;
  position: absolute;
  z-index: 999;
}
.block-kit-suggest-panel::-webkit-scrollbar {
  display: none;
}
.block-kit-suggest-panel .block-kit-suggest-item {
  border-radius: 4px;
  overflow: hidden;
  padding: 3px 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.block-kit-suggest-panel .block-kit-suggest-item.active {
  background-color: var(--color-fill-2);
}
.block-kit-suggest-panel .block-kit-suggest-empty {
  color: var(--color-text-3);
  margin-top: 10px;
  text-align: center;
}