/**
 * AllSubli - Disable Selection & Context Menu
 * Prevents text selection and image dragging
 */

/* Disable text selection on images and videos */
img, video {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
    pointer-events: auto !important;
}

/* Prevent dragging on images */
img::selection {
    background: transparent;
}

img::-moz-selection {
    background: transparent;
}

/* Optional: Disable selection on specific elements */
.post-media,
.reel-video,
.avatar,
.avatar-sm,
.avatar-lg,
.profile-pic {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
}

/* Cursor style for non-selectable elements */
img, video {
    cursor: default;
}
