body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

[id^="modal-"].flex {
  display: flex !important;
}

.animate-spin {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
