/* v0.9.107 · only unoccupied Poker seats are circular */

/* Keep occupied Poker player cards exactly as in v0.9.105. Only the seat shown
   before a player sits down is forced into a true circle. */
#pokerApp .poker-seat.poker-empty-seat {
  width: 108px !important;
  height: 108px !important;
  min-height: 108px !important;
  aspect-ratio: 1 / 1 !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  border-radius: 50% !important;
}
#pokerApp .poker-seat.poker-empty-seat .poker-empty-seat-control {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
}

@media (max-width: 800px) {
  #pokerApp .poker-seat.poker-empty-seat {
    width: 82px !important;
    height: 82px !important;
    min-height: 82px !important;
  }
}
