/**
 * Highlight Update - Estilo para destacar linhas atualizadas
 */

@keyframes highlightRow {
    0% {
        background-color: rgba(25, 135, 84, 0.1);
    }
    50% {
        background-color: rgba(25, 135, 84, 0.2);
    }
    100% {
        background-color: transparent;
    }
}

.highlight-update {
    animation: highlightRow 3s ease;
}

/* Garantir que a linha destacada seja visível */
tr.highlight-update td {
    background-color: rgba(25, 135, 84, 0.1);
    transition: background-color 0.5s ease;
}
