
/* GiftBidz auction card action buttons: Apply Credit (flex) + Bid Buddy (fixed) */
.auction-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Primary button should expand */
.auction-actions .btn-apply-credit,
.auction-actions .apply-credit{
  flex:1 1 auto;
  min-height:44px;
  border-radius:999px;
}

/* Secondary button should NEVER expand */
.auction-actions .btn-bid-buddy,
.auction-actions .bid-buddy{
  flex:0 0 48px;
  width:48px;
  min-width:48px;
  max-width:48px;
  height:44px;
  padding:0;
  border-radius:10px;
  line-height:1.1;
  text-align:center;
}
