body {
    user-select: none; /* Disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

img, video {
    pointer-events: none; /* Prevent dragging images/videos */
}

@media print {
    body {
        display: none !important; /* Hide content when printing */
    }
}