.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-height: 300px;
  max-width: 500px;
  overflow-y: auto;
  display: block;
  z-index: 999999;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
}

.tribute-container .no-match {
  padding: 12px 16px;
  color: #888;
  font-style: italic;
  cursor: default;
}

.tribute-container ul {
  margin: 0;
  padding: 8px 0;
  list-style-type: none;
  background: none;
  border: none;
}

.tribute-container li {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 4px;
  margin: 0 8px;
  font-weight: 500;
}

.tribute-container li.highlight,
.tribute-container li:hover {
  background-color: #f0f0f0;
  color: #000;
}

.tribute-container li span {
  font-weight: bold;
  color: #007bff;
}

.tribute-container::-webkit-scrollbar {
  width: 8px;
}

.tribute-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.tribute-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 8px;
}

.tribute-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}