/**
 * Right Click Ban - Protection CSS
 * 
 * Base protection styles for text selection prevention
 * 
 * @package Right_Click_Ban_Content_Protection_Pro
 * @since 2.2.0
 */

/* Text Selection Prevention */
body.rcb-no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection on specific elements if needed */
body.rcb-no-select input,
body.rcb-no-select textarea,
body.rcb-no-select [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}