/* Student Portal 2.2.9 — direct drag and drop for word-gap exercises. */
.sp-gap-bank [data-gap-token],
.sp-gap-slot [data-gap-placed] {
    touch-action: none;
    -webkit-user-drag: element;
}

.sp-gap-dragging,
.sp-gap-dragging * {
    cursor: grabbing !important;
    user-select: none !important;
}

.sp-gap-drag-ghost {
    position: fixed;
    z-index: 2147483647;
    top: 0;
    left: 0;
    width: max-content;
    max-width: min(280px, calc(100vw - 24px));
    padding: 7px 11px;
    border: 1px solid #78a7f5;
    border-radius: 10px;
    background: #fff;
    color: #17233a;
    box-shadow: 0 12px 30px rgba(23, 35, 58, .22);
    font: inherit;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
    will-change: transform;
}

.sp-gap-bank [data-gap-token].is-dragging,
.sp-gap-slot [data-gap-placed].is-dragging {
    opacity: .28 !important;
}

.sp-gap-bank.is-drag-over,
.sp-gap-slot [data-gap-drop].is-drag-over {
    border-color: #2864e8 !important;
    background: #eef5ff !important;
    box-shadow: 0 0 0 3px rgba(40, 100, 232, .14) !important;
}

