/* =========================
   SPORTY BETSLIP FLOAT
========================= */
#sporty-betslip{
  position: fixed;
  right: 14px;
  bottom: 110px;
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  color: #111;
  z-index: 99999;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

#sporty-betslip div{
  margin-top: 4px;
}

#sporty-betslip-count{
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: #0B3D2E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* =========================
   BETSLIP OVERLAY
========================= */
#betslip-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  z-index: 9998;
}

/* =========================
   BETSLIP PANEL
========================= */
#betslip-panel{
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  height: 75%;
  background: #f4f6f8;
  border-radius: 18px 18px 0 0;
  z-index: 9999;
  transition: bottom .35s ease;
  display: flex;
  flex-direction: column;
}

#betslip-panel.open{
  bottom: 0;
}

/* =========================
   BETSLIP HEADER
========================= */
.betslip-header{
  padding: 14px 16px;
  background: #0B3D2E;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.betslip-title{
  font-size: 16px;
  font-weight: 900;
}

#betslip-count-text{
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
  opacity: .9;
}

.close-btn{
  font-size: 20px;
  cursor: pointer;
}

/* =========================
   BETSLIP BODY
========================= */
.betslip-body{
  flex: 1;
  overflow-y: auto;
  background: #ffffff;
}

/* =========================
   BET ITEM
========================= */
.bet-item{
  padding: 14px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bet-info strong{
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #111;
}

.bet-info small{
  font-size: 13px;
  font-weight: 700;
  color: #0B3D2E;
}

.remove-btn{
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

.remove-btn:hover{
  color: #e53935;
}

/* =========================
   BETSLIP FOOTER
========================= */
.betslip-footer{
  padding: 14px;
  background: #eef1f4;
  border-top: 1px solid #ddd;
}

.betslip-summary{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

#stakeInput{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  margin-top: 6px;
}

/* =========================
   PLACE BET BUTTON
========================= */
.place-bet-btn,
.place-btn{
  width: 100%;
  background: #17c964;
  color: #ffffff;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  margin-top: 12px;
  cursor: pointer;
}

.place-bet-btn:active,
.place-btn:active{
  transform: scale(0.97);
}

/* =========================
   SELECTED ODD (SPORTYBET STYLE)
========================= */
.odd-box{
  transition: background-color .15s ease,
              transform .1s ease;
}

.live-section .odd-box.selected,
.live-section.upcoming .odd-box.selected,
.odd-box.selected{
  background-color: #0B3D2E !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}

.odd-box.selected span{
  color: #ffffff !important;
  font-weight: 900;
}

.odd-box:active{
  transform: scale(0.97);
}
/* =========================
   BETSLIP FLOAT POLISH
========================= */

/* Make float look primary */
#sporty-betslip{
  background: linear-gradient(135deg, #0B3D2E, #0f5132);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

/* Emphasize count badge */
#sporty-betslip-count{
  background: #17c964;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

/* Improve label visibility */
#sporty-betslip div{
  font-size: 11px;
  font-weight: 800;
  opacity: .95;
}
