/* Disable browser pinch/double-tap magnification of this fixed game UI.
   Pan scrolling still works in chat, inventory and other scrollable panels. */
html,body {touch-action:pan-x pan-y;}
button,a,[role="button"],label {touch-action:manipulation;}
#world,#mobile,#mobile button {touch-action:none;}
/* Safari input-focus magnification also occurs with an attached pointer. */
@media (any-pointer:coarse) {input,select,textarea,[contenteditable="true"] {font-size:16px!important;}}
@supports (-webkit-touch-callout:none) {input,select,textarea,[contenteditable="true"] {font-size:16px!important;}}
