/* Right column alignment */
.checkout-reward-box .bb-rp-right{
  text-align: right;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

/* bigger "Wert" display for earn */
.checkout-reward-box .bb-rp-earn-value{
  font-size: 14px;
  color: #333;
  margin-top: 2px;
}

/* sub lines (Max/Wert) */
.checkout-reward-box .bb-rp-sub{
  font-size: 12px;
  color: #666;
}

/* input style matching your UI (Y.png-like) */
.checkout-reward-box .bb-input{
  width: 180px;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  background: #fff;
  outline: none;
  text-align: right;
  font-size: 14px;
}

.checkout-reward-box .bb-input:focus{
  border-color: rgba(0,0,0,.35);
}

/* button style */
.checkout-reward-box .bb-btn{
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--bg-dark);
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-weight: 600;
}

.checkout-reward-box .bb-btn:disabled{
  opacity: .6;
  cursor: not-allowed;
}

/* warning in dark red */
.checkout-reward-box .bb-rp-warning small{
  color: #800000;
}

