/**
 * Right Click Disable Free - Protection CSS
 * 
 * Styles for content protection
 * 
 * @package Right_Click_Disable_OR_Ban
 * @since 1.0.0
 */

/* Disable text selection */
.rcb-no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Disable image dragging */
.rcb-no-select img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Allow pointer events on links even with no-select */
.rcb-no-select a {
    pointer-events: auto;
}

/* Disable touch callout on mobile */
.rcb-no-select {
    -webkit-touch-callout: none;
}
