/**
 * Smart Interlinking Styles
 * Makes internal links stand out and look professional
 */

/* Internal Links - Blue and underlined */
a.apc-internal-link,
.apc-internal-link {
    color: #0066cc !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

a.apc-internal-link:hover,
.apc-internal-link:hover {
    color: #004499 !important;
    text-decoration: underline !important;
    background-color: rgba(0, 102, 204, 0.1) !important;
}

/* External Links (from sitemap) */
a.apc-external-link,
.apc-external-link {
    color: #0066cc !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}

a.apc-external-link:hover,
.apc-external-link:hover {
    color: #004499 !important;
}

/* Wikipedia Reference Links */
a.apc-wiki-link,
.apc-wiki-link {
    color: #3366cc !important;
    text-decoration: underline !important;
    border-bottom: 1px dotted #3366cc !important;
}

/* Highlight new links briefly after insertion */
@keyframes apc-link-highlight {
    0% { background-color: rgba(0, 102, 204, 0.3); }
    100% { background-color: transparent; }
}

a.apc-internal-link[data-new="true"] {
    animation: apc-link-highlight 2s ease-out;
}
