/**
 * Subtle Mention Styles
 *
 * Styling for brand/user mentions and tag badges in markup filter
 * Mentions look like regular text with subtle color hints
 */

/* Brand mentions - subtle gray styling */
.brand-mention {
    /* Inherits text styling, just adds gray color and hover effects */
}

/* User mentions - subtle blue styling */
.user-mention {
    /* Inherits text styling, just adds blue color and hover effects */
}

/* Tag badges keep the existing component styling from tag-badge classes */

/* Mention badge protection - prevent cursor from entering badge internals */
.mention-badge {
    user-select: none;
    -webkit-user-select: none;
}