/* Please define your custom styles here */

html, body {
  margin: 0;
  padding: 0;
  height: 90%;
  width: 100%;
  /* overflow: hidden; */ /* 必要に応じてスクロールを防ぐ */
}

canvas {
  touch-action: none;
}

.labjs-container, .labjs-view {
  width: 100vw;
  height: 90vh;
  box-sizing: border-box;
}

/* Please define your custom styles here */
/* iPadでボタンの文字が表示されない問題はボタンの色を黒に指定するcssで上書きすることで解決 */

button {
  background-color: white;
  border-radius: 3px;
  padding: 8px 8px 6px;
  color: black; /* 追加 */
}

input[type="radio"] {
  transform: scale(3.0);
  margin-right: 1.5em;
}