/*
 * chessboard.js v0.3.0+asn
 *
 * Copyright 2013 Chris Oakman
 * Portions copyright 2022 Steinar H. Gunderson
 * Released under the MIT license
 * https://github.com/oakmac/chessboardjs/blob/master/LICENSE
 *
 * Date: 10 Aug 2013
 */

/* board */
.board-b72b1 {
  outline: 2px solid #404040;
  display: grid;
  grid-template-rows: repeat(8, 12.5%);
  grid-template-columns: repeat(8, 12.5%);
  grid-gap: 0px;
  width: 100%;
  aspect-ratio: 1;
}

/* square */
.square-55d63 {
  /* disable any native browser highlighting */
  user-select: none;
}

/* white square */
.white-1e1d7 {
  background-color: #f0d9b5;
  color: #b58863;
}

/* black square */
.black-3c85d {
  background-color: #b58863;
  color: #f0d9b5;
}

/* highlighted square */
.highlight1-32417, .highlight2-9c5d2 {
  box-shadow: inset 0 0 3px 3px yellow;
}

/* notation */
.alpha-d2270, .numeric-fc462 {
  cursor: default;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  position: absolute;
}
.alpha-d2270 {
  bottom: 1px;
  right: 3px;
}
.numeric-fc462 {
  top: 2px;
  left: 2px;
}

.piece-417db {
  transform: translate(0,0);  /* Force a new stacking context for SVG pieces. */
  position: absolute;
  width: 12.5%;
  height: 12.5%;
}
