@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom animations for flash messages */
@keyframes flashIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flashOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.animate-flash-in {
  animation: flashIn 0.5s ease-out forwards;
}

.animate-flash-out {
  animation: flashOut 0.5s ease-in forwards;
} 