
/* Header 2 Styling */
.header-2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #252a2d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  box-sizing: border-box;
  z-index: 999;
  white-space: nowrap;
}

/* Left Section */
.header-2 .left-section {
  display: flex;
  align-items: center;
  gap: 1px;
  min-width: 100px;
}

.header-2 .icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.header-2 .label {
  font-size: 12px;
  font-weight: 400;
}

.header-2 .arrow {
  font-size: 14px;
  margin-left: 4px;
}

/* Right Section */
.header-2 .right-section {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  flex-shrink: 0;
}

.header-2 .balance-label {
  opacity: 0.9;
}

.header-2 .balance-amount {
  font-weight: 400;
  max-width: 150px;
  overflow: visible;
  text-overflow: unset;
  text-decoration: none;
}

.header-2 .close-btn {
  font-size: 25px;
  cursor: pointer;
  margin-left: 1px;
  margin-bottom: 4px;
}

/* ✅ Responsive Adjustments */
@media (max-width: 500px) {
  .header-2 {
    padding: 10px 10px;
  }

  .header-2 .label {
    font-size: 12px;
  }

  .header-2 .right-section {
    gap: 4px;
    font-size: 14px;
  }

  .header-2 .balance-amount {
    font-size: 13px;
    max-width: none; /* full visibility on mobile */
    overflow: visible;
    text-decoration: none;
  }

  .header-2 .balance-amount strong {
    font-size: 12px;
    font-family: unset;
    font-weight: 500;
  }


}

/* BET ID BAR */
.bet-id-bar {
  position: fixed;
  top: 50px; /* Changed to match mobile height */
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px; /* Using mobile padding */
  box-sizing: border-box;
  z-index: 998;
  min-height: 56px; /* Added from mobile version */
}

/* 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: 15px; /* Changed to match mobile */
  color: #000;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 500px) {
  .bet-id-bar {
    top: 50px;
    padding: 16px 14px;
    min-height: 56px;
  }

  .bet-id-bar .back-btn {
    font-size: 16px;
    left: 12px;
  }

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