/*
 * EKHTEBAR_LEARNING_CONTENT_GUARD
 *
 * Browser-level deterrence for protected learning content.
 * User-authored form fields remain editable/selectable.
 */

#ekhtebarLearningReader,
#ekhtebarLearningReader * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

#ekhtebarLearningReader input,
#ekhtebarLearningReader textarea,
#ekhtebarLearningReader select,
#ekhtebarLearningReader option,
#ekhtebarLearningReader [contenteditable]:not([contenteditable="false"]) {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default !important;
}

#ekhtebarLearningReader img,
#ekhtebarLearningReader svg,
#ekhtebarLearningReader video,
#ekhtebarLearningReader canvas {
    -webkit-user-drag: none !important;
    user-drag: none !important;
}

@media print {
    #ekhtebarLearningReader {
        display: none !important;
    }

    html[data-ek-learning-print-guard="1"] #ekhtebarLearning::after {
        content: "چاپ محتوای آموزشی غیرفعال است.";
        display: block !important;
        padding: 24px;
        margin: 24px 0;
        border: 1px solid #999;
        font-weight: 700;
        text-align: center;
        direction: rtl;
    }
}
