/* Section highlight animation for smooth TOC scrolling */
@keyframes section-flash {
    0% {
        background-color: rgba(0, 122, 204, 0.15);
    }

    100% {
        background-color: transparent;
    }
}

.section-highlight {
    animation: section-flash 1.5s ease-out;
    border-radius: 4px;
}