.spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#dropZone.dragover {
  border-color: #6366f1;
  background-color: rgba(99, 102, 241, 0.08);
}
