/* Shared mobile-game interaction rules. Include this file in every game. */
html,body{
  width:100%;
  height:100%;
  margin:0;
  overflow:hidden;
  overscroll-behavior:none;
}
body{
  position:fixed;
  inset:0;
  touch-action:manipulation;
  -webkit-text-size-adjust:100%;
}
.game-shell,.highlow-shell,.play-area,.card-table{
  overscroll-behavior:none;
  touch-action:manipulation;
}
button,a,.card,.number-card{
  touch-action:manipulation;
}
dialog{
  overflow:auto;
  overscroll-behavior:contain;
  touch-action:pan-y pinch-zoom;
  -webkit-overflow-scrolling:touch;
}
