/* Flash message animation */
@keyframes appear-then-fade {
  0%,
  100% {
    opacity: 0;
  }
  5%,
  60% {
    opacity: 1;
  }
}

.animate-appear-then-fade {
  animation: appear-then-fade 5s both;
}
