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

@layer utilities {
  .animate-slide-in-right {
    animation: slide-in-right 0.3s ease-out;
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
