/* Yanıp sönen yazı efekti */
.text-highlight {
    color: green !important;
    transition: color 2s ease-in-out;
}

/* Opsiyonel: Satır arka plan yanıp sönme */
.highlight {
    animation: flash 2s ease-in-out;
    background-color: yellow !important;
}

@keyframes flash {
    0% { background-color: yellow; }
    50% { background-color: orange; }
    100% { background-color: transparent; }
}
