/* Fact highlighting styles */
.fakt-highlight {
    color: #1d4ed8; /* Darker blue text for better visibility */
    /* No background by default */
    /* No padding for clean text flow */
    border-radius: 4px;
    cursor: pointer;
    /* No transition to prevent visual changes */
    /* No border - clean appearance */
}

/* Hover effect - applies when hovering over highlighted text OR when cross-highlighted via JavaScript */
.fakt-highlight:hover,
.fakt-highlight.cross-highlighted {
    color: #1d4ed8; /* Darker blue text on hover */
    background-color: #dbeafe; /* Light blue background on hover */
    font-weight: 600; /* Bolder text on hover */
}

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

/* Fact items in the right panel - use same light blue background on hover */
.fakt-item:hover {
    background-color: #dbeafe !important; /* Same light blue as text highlighting */
}
/* Updated Fri Sep 12 00:29:40 CEST 2025 */
