/* LinkedIn-style mentions */
.mention {
  display: inline;
  padding: 0 2px;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mention:hover {
  background-color: rgba(var(--linkedin-color-rgb), 0.1);
}

.mentions-dropdown {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

.suggestion-item {
  transition: background-color 0.2s ease;
}

/* Dark theme adjustments */
.theme-dark .mention:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Prevent mention editing */
.mention[contenteditable=false] {
  -webkit-user-select: all;
  user-select: all;
}