.lv-result-wrap{
  box-sizing:border-box;
  padding:15px 12px;
  max-width:900px;
  margin:20px auto;
  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:12px 10px;
  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:12px 10px;
  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:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  position:relative;
  overflow:hidden;
  font-size:16px;
  font-weight:800;
  color:#ffffff;
  text-shadow:
    0 1px 2px rgba(0,0,0,.9),
    0 0 3px rgba(0,0,0,.45);
  background:
    radial-gradient(circle at 30% 28%,
      #79b7ff 0%,
      #3b78c7 34%,
      #1c3f6b 68%,
      #08111d 100%
    );
  box-shadow:
    inset -6px -8px 12px rgba(0,0,0,.35),
    inset 2px 2px 4px rgba(255,255,255,.05),
    0 4px 8px rgba(0,0,0,.28);

  animation:ballPop .5s ease;
}
.lv-result-ball::before{
  content:"";
  position:absolute;
  top:6px;
  left:8px;
  width:10px;
  height:5px;
  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(-2px) scale(1.04);

  box-shadow:
    inset -6px -8px 12px rgba(0,0,0,.35),
    inset 2px 2px 4px rgba(255,255,255,.06),
    0 6px 14px rgba(0,0,0,.35);

  transition:all .25s ease;
}

@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:4px;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding:6px 4px;
}
.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{
    padding:6px 4px;
    font-size:12px;
  }
  .lv-result-table td:last-child{
    width:auto;
  }
  .lv-result-ball{
    width:30px;
    height:30px;
    min-width:30px;
    min-height:30px;
    font-size:14px;
  }
  .lv-result-ball::before{
    width:10px;
    height:5px;

    top:5px;
    left:6px;
  }
}