:root {
  --gray-50: #f9fafb;
  --gray-100: #e5e7eb;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  overflow: auto;
  display: block;
  z-index: 999999;
}

.tribute-container ul {
  margin: 0;
  margin-top: 2px;
  padding: 0;
  list-style: none;
  background: var(--gray-50);
  border-radius: 8px;
  padding: 4px;
}

html.dark .tribute-container ul {
  background: var(--gray-900);
  color: #ffffff;
}

.tribute-container li {
  padding: 5px 5px;
  cursor: pointer;
}

.tribute-container li.highlight {
  background: var(--gray-100);
  border-radius: 4px;
}

html.dark .tribute-container li.highlight {
  background: var(--gray-800);
}

.tribute-container li span {
  font-weight: bold;
}

.tribute-container li.no-match {
  cursor: default;
}

.tribute-container .menu-highlighted {
  font-weight: bold;
}
