/*------------------------
    SORTABLE CLASSES
--------------------------*/
.sortable-ghost {
    opacity: 0.5;
}

.hide-sortable-ghost,
.hide-sortable-drag,
.hide-sortable-chosen {
    opacity: 0 !important;
}

.sortable-drag {
    /* background-color: rgba(var(--mangofit-color-rgb), 0.6) !important; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Ombra durante il trascinamento */
}

.sortable-chosen {
    /* background-color: rgba(var(--mangofit-color-rgb), 0.3); */
}

.hide-ghost {
    opacity: 0 !important;
    visibility: hidden !important;
}

.superset-nested-exercise-drag-handler,
.workout-card-item-drag-handler,
.workout-card-section-exercises-drag-handler {
    cursor: move;
}


