/* Piece and point styles for Nine Men's Morris */
.morris-point {
  position: absolute;
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fafdff 60%, #e3eaf2 100%);
  border: 2.5px solid #1976d2;
  box-shadow: 0 2px 8px #b0c4de;
  z-index: 2;
  transition: background 0.2s, border 0.2s, box-shadow 0.2s;
}
.morris-point.occupied-red {
  background: linear-gradient(145deg, #e53935 60%, #b71c1c 100%);
  border-color: #b71c1c;
  box-shadow: 0 2px 10px #e53935aa;
}
.morris-point.occupied-black {
  background: linear-gradient(145deg, #222 60%, #444 100%);
  border-color: #555;
  box-shadow: 0 2px 10px #2228;
}
.morris-point.selected {
  box-shadow: 0 0 16px #0078d7, 0 2px 10px #b0c4de;
  border-color: #0078d7;
}
