/* Minimal reorder handle styles - keeping original dropzone design */
.dz-reorder-handle {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: move;
    padding: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    transition: background-color 0.2s ease;
    z-index: 10;
}

.dz-reorder-handle:hover {
    background: rgba(255, 255, 255, 1);
}

.dz-preview.dz-dragging {
    opacity: 0.7;
    transform: scale(0.95);
    z-index: 1000;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.dz-preview.sortable-enabled {
    cursor: move;
}

.dz-preview.sortable-enabled .dz-reorder-handle {
    cursor: move;
}

/* Visual feedback during drag */
.dz-preview {
    transition: all 0.2s ease;
}