/* Tribute.js mention autocomplete styles - customized for Tailwind design system */
.tribute-container {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-height: 300px;
  overflow: auto;
  display: block;
  z-index: 1000;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-width: 250px;
  max-width: 400px;
}

.tribute-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: white;
}

.tribute-container li {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
}

.tribute-container li:last-child {
  border-bottom: none;
}

.tribute-container li.highlight {
  background: #f3f4f6;
}

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

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

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

/* Custom scrollbar for Tribute container */
.tribute-container::-webkit-scrollbar {
  width: 6px;
}

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

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

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

/* Variable description styling */
.tribute-variable-name {
  display: block;
  font-weight: 500;
  color: #111827;
}

.tribute-variable-description {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.125rem;
}