/* search-highlight.css */
.search-highlight {
    background-color: yellow; /* Highlight color */
    transition: background-color 1s ease; /* Smooth transition for animation */
}
.search-highlight-active {
    background-color: orange; /* Highlight color for the active occurrence */
    animation: highlight-fade 2s ease-in-out forwards; /* Animation lasts 2 seconds */
}
@keyframes highlight-fade {
    0% { background-color: orange; }
    50% { background-color: orange; }
    100% { background-color: transparent; }
}