/* app/styles/animations.css */
.hidden {
  display: none;
}
.fadeIn {
  animation: fadeInAnimation .5s forwards;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slideDown {
  animation: slideDownAnimation .5s forwards;
  overflow: hidden;
  max-height: 0;
}
@keyframes slideDownAnimation {
  0% {
    max-height: 0;
  }
  to {
    max-height: 500px;
  }
}
@keyframes rotateInfinite {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.infinite-rotate {
  animation: rotateInfinite 2s linear infinite;
}
