@charset "UTF-8";
/* App Master - CSS Document */
html, body {
  height: 100%;
  overflow: hidden;
	overflow-x: hidden;      /* Disable horizontal scrolling */
    touch-action: pan-y;     /* Only allow vertical scrolling */
	overscroll-behavior: none;  /* Prevent “bounce” effect */
}

.app-container {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smooth scroll iOS */
}

