/* Minimal animate.css: only .animate__animated + .animate__fadeIn (replaces full animate.css) */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
