/* Fact highlighting styles */
.fakt-highlight {
    color: #3b82f6; /* Blue text color instead of background */
    padding: 2px 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fakt-highlight:hover {
    background-color: #bfdbfe; /* Light blue background only on hover */
    color: #1d4ed8; /* Darker blue text on hover */
}

/* Ensure proper spacing and readability */
.fakt-highlight + .fakt-highlight {
    margin-left: 2px;
}
