.enhanced-footnote {
    pointer-events: auto;
    display: inline-block;
    color: inherit !important;
    text-decoration: none !important;
}

.active-tooltip {
    position: fixed;
    background: #333;
    color: white;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 9999;
    max-width: min(800px, 90vw);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    
    /* Tekst formatting */
    text-align: left;
    line-height: 1.6;
    white-space: pre-wrap;
}

.active-tooltip::before {
    display: none;
}

.active-tooltip::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #333 transparent transparent;
}

.footnote-reference {
    text-decoration: none !important;
    color: inherit !important;
} 