/* FreeCell adds a wider board (8 columns) and a divider between
   the free cells and the foundations. */

.board-freecell {
  max-width: calc(8 * var(--card-w) + 7 * var(--pile-gap) + 2 * var(--board-pad));
}

.top-divider {
  width: 2px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  margin: 4px 0;
}
