body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img,
a,
video,
canvas,
svg {
    -webkit-user-drag: none;
    user-drag: none;
}

input,
textarea,
select,
[contenteditable="true"] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

@media print {
    body * {
        display: none !important;
        visibility: hidden !important;
    }

    body::before {
        content: "Printing is disabled for this page.";
        display: block !important;
        visibility: visible !important;
        font-size: 22px !important;
        padding: 40px !important;
        color: #000 !important;
    }
}