h1,
h3,
h5 {
  font-family: "Courier New", Courier, monospace;
  font-size: 160%;
  text-align: center;
}

.rahmen {
  border: 2px solid grey;
  margin: 5px;
  padding: 10px;
}

body {
  width: 540px;
  margin: auto;
  font-size: 75%;
}

#scoreboard {
  display: flex;
  justify-content: space-around;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 0.9rem;
}

.score-box {
  background: #34495e;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid #ecf0f1;
}

#white-count {
  color: #ecf0f1;
}
#black-count {
  color: #f1c40f;
} /* Gold für die KI-Punkte */

.hidden {
  display: none !important;
}

#game-container {
  text-align: center;
}

#board {
  display: grid;
  grid-template-columns: repeat(8, 60px);
  grid-template-rows: repeat(8, 60px);
  border: 5px solid #e66510;
  margin: 1px auto;
}

.square {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dark {
  background-color: #769656;
}
.light {
  background-color: #eeeed2;
}

.piece {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.white {
  background-color: #ecf0f1;
  border: 2px solid #bdc3c7;
  color: black;
}

.black {
  background-color: #222;
  border: 2px solid #111;
  color: white;
}

/* Status-Markierungen */
.selected {
  outline: 4px solid #f1c40f;
  outline-offset: -4px;
}

.highlight {
  background-color: rgba(46, 204, 113, 0.6) !important;
  cursor: pointer;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 246, 241, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.button {
  font: bold 11px Arial;
  text-decoration: none;
  background-color: #ff0000;
  color: #ffffff;
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #cccccc;
}

.dmbutton {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background: #e74c3c;
  border: none;
  color: white;
  border-radius: 5px;
}

fieldset {
  background-color: #f6ddab;
  overflow: hidden;
}

footer {
  border-radius: 4px;
  text-align: center;
  padding: 0px;
  background-color: rgb(167, 164, 0);
  color: white;
  font-size: 14px;
}
