
/*==============================
Files / images
==============================*/
.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
}

.choice-thumb {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.custom-file-btn {
    padding: .375rem .75rem;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1rem;
}

/*==============================
Drag & drop
==============================*/
.drag-handle {
    cursor: grab;
    font-size: 20px;
    color: #888;
}

.sortable-chosen {
    background: hsl(250, 100%, 90%) !important;
    box-shadow: 0 0 0 2px hsl(250, 100%, 80%) inset;
}

.sortable-ghost {
    opacity: 0.35;
    background: #e9ecef !important;
    border: 2px dashed #adb5bd;
}

.sortable-drag {
    opacity: 0.9;
    transform: rotate(1deg);
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.15);
}