.mention {
    font-weight: bold;
}

.tribute-container {
    min-width: 85px;
}

/* Change mention color from red to blue */
.mention {
    color: #1e88e5 !important; /* A professional blue */
    font-weight: bold;
    background-color: #e3f2fd; /* Light blue background highlight */
    padding: 1px 4px;
    border-radius: 3px;
    text-decoration: none !important;
}

/* Optional: Change color when hovering over the mention */
.mention:hover {
    color: #1565c0 !important;
    background-color: #bbdefb;
}

