/* Plugin-specific styles for mokhosh/filament-kanban.
   Tailwind 3 preflight and compiled utility classes were stripped
   to stop clobbering Filament 5's default theme via CSS cascade. */

.grabbing * {
    cursor: grabbing !important;
}

/* Briefly-highlighted animation used by kanban-record.blade.php:
   $el.classList.add('animate-pulse-twice', ...)
   Filament's default theme doesn't supply the -twice variant. */
.animate-pulse-twice {
    animation: pulse 1s cubic-bezier(0, 0, 0.2, 1) 2;
}
