@charset 'utf-8';
html {background-color: #f9f9f9; overflow-y:scroll;}
button:active {
  -webkit-transform: translate(0,1px);
  -moz-transform: translate(0,1px);
  transform:scale(1.1); /*translate(0,1px);*/
}
img {
	user-drag: none;
	-webkit-user-drag: none;
	-moz-user-select: none;
  /* PCの右クリック禁止 */
  pointer-events: none;
}

/*スクロール可視化*/
.scrollgress{
	z-index: 3;
	top:0px!important;
}
body::-webkit-scrollbar {
  width: 7px;
  height: 10px;
}
body::-webkit-scrollbar-track {
	background: linear-gradient(#FBF4FF, #FFB9F1);
}
body::-webkit-scrollbar-thumb {
  background: #CB74F7;
  border-radius:10px;
}

#chart{
  text-align: center;
}
#myInput{
  margin: 5px;
}

/* テーブル全体のスタイル */
table {
  border-collapse: collapse;
  margin: auto;
  width: 100%; /* テーブルの幅を指定 */
  max-width: 1000px; /* テーブルの最大幅を指定 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影をつける */
  background-color: #ffffff; /* 背景色 */
}

/* ヘッダーセル（th）のスタイル */
th {
  background-color: #f2f2f2;
  border: 1px solid #e0e0e0;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase; /* テキストを大文字に */
}

/* データセル（td）のスタイル */
td {
  border: 1px solid #e0e0e0;
  padding: 10px;
  text-align: center;
}

/* ホバー時のスタイル変更 */
tr:hover {
  background-color: #f0f0f0;
}
