@keyframes slide-in-bottom {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slide-in-top {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slide-in-bottom 0.3s ease-out;
}

.animate-slide-in-top {
  animation: slide-in-top 0.3s ease-out;
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}