


/* BET ID BAR */
.bet-id-bar {
  position: relative;
  top: -10px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  box-sizing: border-box;
  z-index: 1;
  min-height: 56px;
}

/* Back Button */
.bet-id-bar .back-btn {
  position: absolute;
  left: 12px; /* Changed to match mobile */
  font-size: 16px; /* Changed to match mobile */
  color: #000;
  cursor: pointer;
  user-select: none;
  font-weight: 100;
}

/* Bet ID Text */
.bet-id-bar .bet-id-text {
  font-weight: 700;
  font-size: 19px; /* Changed to match mobile */
  color: #000;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .bet-id-bar {
    top: 0;
    padding: 10px 10px;
    min-height: 45px; /* Increased height */
  }

  .bet-id-bar .back-btn {
    font-size: 15px;
    left: 10px;
  }

  .bet-id-bar .bet-id-text {
    font-size: 17px;
  }
}