#board {
  display: grid;
  border: 1px solid lightgray;
  box-sizing: border-box;
  grid-template-columns: 130px 130px 130px;
  justify-content: center;
  width: 390px;

  > div {
    height: 130px;
    width: 130px;
  }
}

#col1 {
  width: 390px;
}

#reset {
  display: block;
  width: 100%;
  justify-content: center;
}

.glow {
  box-shadow: inset 0 0 15px 5px #00ffff;
}

.token {
  width: 100px;
  height: 100px;
  margin: 10px;
  border: 5px solid black;
  border-radius: 50%;
  cursor: grab;
}

.invalid {
  background-image: url("/img/x.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.red {
  background-color: red;
}

.yellow {
  background-color: yellow;
}

.green {
  background-color: green;
}

.blue {
  background-color: #00ffff;
}

.purple {
  background-color: purple;
}

#goal_red {
  background-color: rgba(255, 0, 0, 0.25);
}

#goal_green {
  background-color: rgba(0, 255, 0, 0.25);
}

#goal_purple {
  background-color: rgba(160, 32, 240, 0.25);
}

#goal_yellow {
  background-color: rgba(255, 255, 0, 0.25);
}

#goal_blue {
  background-color: rgba(0, 255, 255, 0.25);
}

#mid_left {
  box-sizing: border-box;
  border-right: 5px solid black;
  border-bottom: 5px solid black;
}

#mid_right {
  box-sizing: border-box;
  border-left: 5px solid black;
  border-top: 5px solid black;
}
