body {
  margin: 0;
  background-color: black;
  font-family: Arial, sans-serif;
  overflow: auto;
  color: white;
}


#game-controls {
  position: fixed;
  top: 530px;
  right: 10px;
  background-color: rgba(20, 20, 20, 0.9);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 170, 255, 0.3);
}

#game-controls span {
  display: block;
  margin-bottom: 5px;
}

#current-pattern-name {
  color: #00aaff;
  font-weight: bold;
}

#current-shape-name {
  color: #00aaff;
  font-weight: bold;
}

#container {
  width: 100vw;
  height: 75vh;
  overflow: hidden;
  position: relative;
  cursor: grab;
  background-color: #080808;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#container.dragging {
    cursor: grabbing;
}
/* Styles for the Canvas */
#board-canvas {
  display: block;
  background-color: black;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

#content {
  margin-top: 0;
  padding: 20px 40px;
  background-color: #1a1a1a;
  color: white;
  font-size: 1.1em;
  line-height: 1.6;
  min-height: 25vh;
  box-sizing: border-box;
}

#content h2 {
  font-size: 1.8em;
  color: #00aaff;
  border-bottom: 1px solid #00aaff;
  padding-bottom: 5px;
  margin-top: 0;
  margin-bottom: 15px;
}

#content p {
  margin-bottom: 15px;
}

.github {
  font-family: Arial;
  font-size: 13px;
  background-color: rgb(72, 185, 52);
  border: none;
  border-radius: 6px;
  color: white;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 8px;
  display: inline;
  text-decoration: none;
  transition: 0.1s;
  cursor: pointer;
}

.span {
  margin-right: 8px;
}
