/* Styles for draggable elements */
        .sortable-ghost {
            opacity: 0.4;
            background-color: #c0d8ff;
        }
        .handle {
            cursor: move;
        }
        
        /* ========================================
           DRAG & DROP STYLES
           ======================================== */

        /* Element being dragged */
        [data-cv-element].cv-element-dragging {
            opacity: 0.5;
            transform: scale(0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Drop target highlight */
        [data-cv-element].cv-element-drop-target {
            outline: 3px dashed #10b981 !important;
            outline-offset: 4px;
            background: rgba(16, 185, 129, 0.05) !important;
        }

        /* Draggable cursor */
        [data-cv-element][draggable="true"] {
            cursor: move;
        }

        [data-cv-element][draggable="true"]:active {
            cursor: grabbing;
        }
