.pokerTable {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #f3f4f6;
}

/* Grid Layout */
.pokerGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 0;
}

/* Bet Cell */
.betCell {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

/* Bet Type */
.betType {
  padding: 4px 12px;
  text-align: center;
  font-weight: 700;
  color: #374151;
}

/* Bet Value (Active) */
.betValue {
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  background: #72BBef;
  color: black;
  width: 92%;
  margin: auto;
  border-radius: 2px;
  transition: background 0.3s ease;
}

/* Locked Bet Cell */
.lockedBet {
  padding: 10px;
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  background: #3a4a5d;
  width: 92%;
  margin: auto;
  border-radius: 2px;
  transition: background 0.3s ease;
}

/* Lock Icon Centered */
.lockIcon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.125rem;
  color: #ffffffbd;
  pointer-events: none;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .betType,
  .betValue,
  .lockedBet {
    padding: 8px;
    font-size: 0.875rem;
  }
}

/* 🔥 Removed the line that forced 2 columns on small screens */

@media (max-width: 480px) {
  .betType {
    font-size: 0.813rem;
  }

  .betValue,
  .lockedBet {
    font-size: 0.875rem;
  }
}

/* Optional: You can remove this too if you want 3 even on 360px */
@media (max-width: 360px) {
  .pokerGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
