/* Efecto de resplandor o latido */
@keyframes resplandorFila {
  0% { background-color: #ffffff !important; }
  50% { background-color: #fff3cd !important; box-shadow: inset 0 0 10px #ffc107; }
  100% { background-color: #ffffff !important; }
}

/* Selector más fuerte para ganarle a Bootstrap y DataTables */
table.dataTable tbody tr.fila-resaltada, 
table.dataTable tbody tr.fila-resaltada td {
  animation: resplandorFila 2s infinite !important;
  font-weight: bold !important;
  background-color: #fff3cd !important; /* Color base por si falla la animación */
}