/**
 * Content Protection CSS
 */

/* Disable text selection when the option is enabled */
.content-protection-disable-selection {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Make sure images are also protected */
.content-protection-disable-selection img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Style for protected content container */
.content-protected {
    position: relative;
}

/* Optional overlay for visual indication that content is protected */
.content-protected.with-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}
