/**
 * Frontend styles for Matched Entity Links
 */

.entity-link {
    color: #6366f1;
    text-decoration: none;
    border-bottom: 1px dotted #6366f1;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0 1px;
}

.entity-link:hover {
    color: #4f46e5;
    background-color: rgba(99, 102, 241, 0.08);
    border-bottom: 1px solid #4f46e5;
    border-radius: 3px;
    padding: 0 3px;
    margin: 0 -2px;
}

/* Microdata block hidden helper (just in case they output microdata tags) */
.entity-microdata {
    display: none;
    visibility: hidden;
}
