/* Modal Animation */
@keyframes modal-show-animation {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-modal-show {
  animation: modal-show-animation 0.3s forwards;
}
