.modal-overlay {
  animation: fadeIn 0.2s ease-in-out !important;
}

.modal-overlay .rounded-xl {
  animation: scaleIn 0.2s ease-in-out !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
