/*******************************************************************************
CITATION TOOLTIP & BIBLIOGRAPHY CITATION COUNTS
*******************************************************************************/

/* Tooltip box */
.cite-tooltip {
    position: absolute;
    z-index: 100;
    max-width: 500px;
    padding: 10px 14px;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #e0e0e0;
    font-family: "Raleway", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.82rem;
    line-height: 1.5;
    box-shadow: 0px 8px 24px hsla(0, 0%, 30%, 0.6);
    pointer-events: none;
}

@media (prefers-color-scheme: dark) {
    .cite-tooltip {
        background-color: #3a3a3a;
        color: #e8e8e8;
        box-shadow: 0px 8px 24px hsla(0, 0%, 0%, 0.7);
    }
}

/* Citation count inside tooltip */
.cite-tooltip .cite-tooltip-count {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #555;
    font-weight: 700;
    color: #4CAF50;
    font-size: 0.8rem;
}

/* Inline citation count badge in bibliography */
.cite-count {
    color: #4CAF50;
    font-size: 0.85em;
    font-style: italic;
}

@media (prefers-color-scheme: dark) {
    .cite-count {
        color: #66BB6A;
    }
}

/* Style the inline [1] references to hint they're hoverable */
a[role="doc-biblioref"] {
    cursor: pointer;
}

/* Hide tooltip on small screens */
@media (max-width: 800px) {
    .cite-tooltip {
        display: none;
    }
}
