/* Shared by every game. Keep native editing only in user-input fields. */
html, body, body * {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

body input, body textarea, body select,
body [contenteditable=""], body [contenteditable="true"],
body [contenteditable="plaintext-only"],
body [contenteditable="true"] *, body [contenteditable=""] *,
body [contenteditable="plaintext-only"] * {
    -webkit-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default !important;
}

img, canvas, svg, a {
    -webkit-user-drag: none;
}
