/* public_html/assets/css/betslip.css */

/* floating betslip button */
#nx-float-slip{
  position: fixed;
  right: 14px;
  bottom: 92px;
  z-index: 90;
  display:none;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(22,182,216,.14);
  border: 1px solid rgba(22,182,216,.28);
  color: #E8FBFF;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  cursor:pointer;
}
#nx-float-slip .badge{
  width:28px;height:28px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

/* overlay + panel */
#nx-slip-overlay{
  position:fixed; inset:0;
  background: rgba(0,0,0,.45);
  display:none;
  z-index: 98;
}
#nx-slip-panel{
  position:fixed;
  left:0; right:0; bottom:-100%;
  z-index: 99;
  background: rgba(7,26,43,.96);
  border-top:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -22px 50px rgba(0,0,0,.55);
  transition: bottom .20s ease;
  max-height: 82vh;
  display:flex;
  flex-direction:column;
}
#nx-slip-panel.open{ bottom:0; }

.nx-slip-head{
  padding: 12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nx-slip-head .t{
  font-weight: 950;
  letter-spacing:.2px;
}
.nx-slip-head .x{
  width:38px;height:38px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
}

#nx-slip-body{
  padding: 12px 14px;
  overflow:auto;
}

.nx-bet-item{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  margin-bottom: 10px;
}
.nx-bet-item .info strong{
  display:block;
  font-weight: 950;
}
.nx-bet-item .info small{
  color: rgba(234,242,255,.70);
  font-weight: 800;
}
.nx-bet-item .rm{
  width:34px;height:34px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
}

.nx-slip-foot{
  padding: 12px 14px;
  border-top:1px solid rgba(255,255,255,.08);
}

.nx-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
  font-weight: 900;
}
.nx-row span{ color: rgba(234,242,255,.70); font-weight:900; }
.nx-row strong{ color:#E8FBFF; }

.nx-stake{
  width:100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #EAF2FF;
  outline: none;
  font-weight: 950;
}

.nx-place{
  width:100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  border:1px solid rgba(22,182,216,.28);
  background: rgba(22,182,216,.16);
  color:#E8FBFF;
  font-weight: 950;
  cursor:pointer;
}

/* selected odds glow */
.nx-odd.selected{
  background: linear-gradient(180deg, rgba(22,182,216,.22), rgba(255,255,255,.06));
  border-color: rgba(22,182,216,.40);
  box-shadow: 0 10px 26px rgba(0,0,0,.30), 0 0 24px rgba(22,182,216,.18);
}
