/* Row flash animation — triggered when a station receives a new reading */
@keyframes row-flash {
  0%   { background-color: rgba(13, 110, 253, 0.30); }
  100% { background-color: transparent; }
}

.row-flash {
  animation: row-flash 1.2s ease-out;
}
