
#crab {
  position: absolute;
  bottom: 0;
  width: 80px; /* Ajusta tamaño */
  cursor: grab;
  pointer-events: auto; /* Habilita drag */
  user-select: none;
}

/* Cambia cursor mientras se arrastra */
#crab.dragging {
  cursor: grabbing;
}
