/* PetLog Admin Dashboard — Spin Animation
   Used for: AdminStatusBadge value="processing" (Loader2 icon)
*/

@keyframes petlog-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.animate-spin {
  animation: petlog-spin 1s linear infinite;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-spin {
    animation: none;
  }
}
