/* app/assets/stylesheets/ui/today_queue.css */

/* Briefly highlights a Today's Queue row when it's updated live via Turbo
   Stream broadcast (e.g. a doctor completes a consultation while staff has
   the queue open elsewhere). Only applied on the broadcast render, not the
   initial page load, see _today_row.html.erb. */
@keyframes today-row-flash {
  from { background-color: #ccfbf1; }
  to   { background-color: transparent; }
}

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