/* 全体の背景とフォント設定 */
body {
  background-color: #ffe4e1; /* ピンク系の背景 */
  font-family: sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* タイトル */
h1 {
  margin-top: 20px;
  color: #333;
}

/* テーブル全体を囲う四角い背景 */
#table-area {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 30px auto;
  background-color: #ffe0b3;       /* 明るい木目風カラー */
  border-radius: 20px;             /* 角丸 */
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border: 3px solid #d4a76a;       /* 木目フレームをイメージ */
}

/* STARTボタンのスタイル */
#start-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 20px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  background-color: #fff2cc;
  border: 2px solid #d4a76a;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 〇（circle）の共通スタイル */
.circle {
  width: 60px;
  height: 60px;
  background-color: white;
  border: 2px solid black;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 22px;
  transition: background-color 0.3s;
}

/* それぞれの位置調整 */
#circle0 { top: 20px; left: 20px; }
#circle1 { top: 20px; right: 20px; }
#circle2 { bottom: 20px; right: 20px; }
#circle3 { bottom: 20px; left: 20px; }

/* 入力欄の見やすさ調整 */
#player-inputs {
  margin-top: 30px;
  text-align: left;
  display: inline-block;
  background-color: #fff8f4;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

/* スコア表示 */
#scores {
  margin-top: 20px;
  font-size: 18px;
  background-color: #fffef0;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}