/* static/global.css */

/* Global Style */
html,body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Lao', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    height: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
  /* user can't select */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
   scrollbar-width: none; /* Firefox */
   touch-action: manipulation;
  }

  input, textarea, select {
  font-size: 16px; /* Prevents zooming on focus */
}


  
  /* ฟอนต์สำหรับภาษา la */
  @font-face {
    font-family: 'Noto Sans Lao';
    src: url('/fonts/NotoSansLao-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
  }

  .font-la, input, button {
    font-family: 'Noto Sans Lao', sans-serif;
  }

  .container {
  max-height: 100vh;
  height: 100%;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  }

  .container::-webkit-scrollbar {
    display: none;
  }