.lv-result-wrap{
  box-sizing:border-box;
  padding:8px;
  margin:12px auto;
  max-width:900px;
  display:flex;
  justify-content:center;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.lv-result-table{
  width:100%;
  border-collapse:collapse;
  background:#0d1f33;
  color:#f2f6ff;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  table-layout:auto;
}
.lv-result-table th{
  background:linear-gradient(135deg, #0b0f14, #1a2636);
  color:#cfe6ff;
  padding:8px 6px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  border-bottom:1px solid rgba(120,170,255,0.15);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.4);
}
.lv-result-table td{
  padding:5px 6px;
  border-bottom:1px solid rgba(120,170,255,0.15);
  text-align:center;
  color:#ffffff;
}
.lv-result-table th:not(:last-child),
.lv-result-table td:not(:last-child){
  border-right:1px solid rgba(120,170,255,0.15);
}
.lv-result-table tr{
  background:#0d335a;
  transition:all .25s ease;
}
.lv-result-table tr:nth-child(even){
  background:#12406f;
}
.lv-result-table tr:hover{
  background:#1e5c99;
}
.lv-result-ball{
  width:28px;
  height:28px;
  min-width:28px;
  min-height:28px;
  font-size:14px;
  font-weight:700;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;

  background:
    radial-gradient(circle at 30% 25%,
      #8ec5ff 0%,
      #3b82c7 35%,
      #1e3a5f 70%,
      #0b1220 100%
    );

  box-shadow:
    inset -4px -6px 10px rgba(0,0,0,.35),
    inset 2px 2px 4px rgba(255,255,255,.08),
    0 3px 8px rgba(0,0,0,.25);

  text-shadow:
    0 1px 2px rgba(0,0,0,.8);

  position:relative;
  overflow:hidden;

  animation:ballPop .5s ease;
}
.lv-result-ball::before{
  content:"";
  position:absolute;
  top:2px;
  left:7px;
  width:8px;
  height:3px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  transform:rotate(-18deg);
  filter:blur(.5px);
  pointer-events:none;
}
.lv-result-ball::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:
    radial-gradient(circle at 35% 25%,
      rgba(255,255,255,.10) 0%,
      rgba(255,255,255,.03) 18%,
      transparent 38%
    );

  pointer-events:none;
}

.lv-result-ball:hover{
  transform:translateY(-1px) scale(1.05);
  box-shadow:
    inset -4px -6px 10px rgba(0,0,0,.35),
    inset 2px 2px 4px rgba(255,255,255,.1),
    0 6px 14px rgba(0,0,0,.35);
}

@keyframes ballPop{
  0%{
    transform:scale(.3) rotate(180deg);
    opacity:0;
  }
  100%{
    transform:scale(1) rotate(0);
    opacity:1;
  }
}

.lv-result-balls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:3px;
  padding:2px;
  flex-wrap:nowrap;
  overflow-x:auto;
}
.lv-result-balls::-webkit-scrollbar{
  display:none;
}
.lv-refresh-wrap{
  text-align:center;
  margin:5px 0;
}
.lv-refresh-btn{
  padding:6px 12px;
  font-size:13px;
  font-weight:600;
  color:#fff;
  background:#1a2636;
  border:1px solid rgba(120,170,255,0.35);
  border-radius:4px;
  display:inline-block;
  cursor:pointer;
}
.lv-refresh-btn:hover{
  background:#1e5c99;
}
.lv-refresh-btn:active{
  transform:scale(0.98);
}
.lv-date-mobile{
  display:none;
}
@media(max-width:768px){

.lv-date-head,
.lv-date-cell{
display:none;
}

.lv-date-mobile{
display:block;
margin-top:6px;
font-size:11px;
opacity:.8;
}

.lv-result-table td{
font-size:12px;
}

}
