/* /var/www/Poker/frontend/betamt-hotfix.css
   Bet amount text ABOVE chips (all seats)
   Loads last → wins vs poker.css / poker.table.css
*/

#tableSurface #betZones .betZone{
  position: absolute; /* keep existing behavior */
}

/* Bet amount: always near top of the zone */
#tableSurface #betZones .betZone .betAmt{
  position: absolute !important;
  top: 10px !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  z-index: 999999 !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

/* Chips: forced below the bet amount */
#tableSurface #betZones .betZone .chipRow{
  margin-top: 56px !important;  /* tune 46–70 */
  z-index: 1 !important;
  position: relative !important;
}

/* Extra: chips can never float above text */
#tableSurface #betZones .betZone .chipRow img.chip{
  z-index: 1 !important;
  position: relative !important;
}
