/* games/checkers/style.css */

#checkers-canvas {
  border-radius: var(--border-radius);
  touch-action: none;
  display: block;
  cursor: pointer;
  max-width: 100%;
  height: auto;
}

.checkers-turn {
  font-size: var(--font-size-base);
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
