/* カウントダウンオーバーレイのスタイル */
#countdownOverlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}

#countdownOverlay[hidden] {
  display: none;
}

#countdownText {
  font-size: 20px;
  font-weight: bold;
}

/* クリックボックスのスタイル */
.clickBox {

  margin:5px;
  flex: 1 1 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid black;
  border-radius: 3px;
  background: white;
}

.clickBox.active {
  background: lightgreen;
}
