/* Brief highlight when the simulator updates a row's price (or it's a new
   listing). Auto-cleared after ~1.4s by the React hook. */
@keyframes tm-row-flash {
  0% {
    background-color: rgba(78, 178, 255, 0.18);
  }
  100% {
    background-color: transparent;
  }
}

tr.tm-row-selectable[data-updated="1"] > td {
  animation: tm-row-flash 1.4s ease-out;
}
