/* Application styles */

/* Flash a newly-broadcast annotation card so the reviewer notices it */
@keyframes annotation-flash {
  0%   { background-color: rgba(59, 130, 246, 0.25); }
  100% { background-color: transparent; }
}
.annotation-flash {
  animation: annotation-flash 1.2s ease-out;
}

