/* assets/drag.css */
/* html, body { height: 100%; margin: 0; } */
/* Avoid selecting the header text while dragging */
.drag-handle { user-select: none; touch-action: none; cursor: grab; }
.drag-handle:active { cursor: grabbing; }
/* Optional: the whole card can show a grab cursor */
.draggable { cursor: grab; }
.draggable:active { cursor: grabbing; }
