/* Styles for draggable images */
.draggable-image {
    transition: transform 0.2s ease;
    position: relative;
}
.draggable-image.dragging {
    transform: scale(0.95);
    opacity: 0.8;
    z-index: 1000;
}
.draggable-image.drop-target {
    outline: 3px solid #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    z-index: 999;
}
.draggable-image.drop-target::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed #007bff;
    background-color: rgba(0, 123, 255, 0.1);
    z-index: 999;
    pointer-events: none;
}
.drag-handle {
    cursor: move;
}
.drag-ghost {
    position: fixed;
    pointer-events: none;
    z-index: 1001;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Toast styles are now in the main CSS */
