/* ===== Live Scores Header ===== */

.ls-head{
  position: relative;
  padding: 6px 0 14px;
}

.ls-title{ margin-bottom: 14px; }

.ls-h1{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 44px;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.5px;
}

.ls-ico{
  width: 30px;
  height: 30px;
  color: #ffb55c;
  display:inline-flex;
}
.ls-ico svg{ width:100%; height:100%; }

.ls-sub{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.ls-tools{
  position:absolute;
  right:0;
  top:6px;
  display:flex;
  align-items:center;
  gap:10px;
}

.ls-select{
  position:relative;
  min-width: 210px;
}

.ls-select select{
  width:100%;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  padding: 0 38px 0 14px;
  outline: none;
  appearance: none;
  font-weight: 700;
  font-size: 13px;
}

.ls-chev{
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events:none;
  font-size: 14px;
}

.ls-btn{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow: var(--shadow-soft, none);
}

.ls-btn svg{ width:18px; height:18px; }

.ls-btn--accent{
  background: var(--accent);
  border-color: transparent;
  color: #052015;
}

.ls-status{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,181,92,0.18);
  background: rgba(255,181,92,0.06);
  margin-top: 16px;
}

[data-theme="light"] .ls-status{
  border-color: rgba(255,181,92,0.30);
  background: rgba(255,181,92,0.12);
}

.ls-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: #ffb55c;
  box-shadow: 0 0 0 4px rgba(255,181,92,0.18);
}

.ls-sep{ color: var(--muted); opacity:.7; }
.ls-muted{ color: var(--muted); }

.ls-tabs{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 16px;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  width: fit-content;
}

[data-theme="light"] .ls-tabs{
  background: rgba(0,0,0,0.03);
}

.ls-tab{
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 800;
  font-size: 13px;
  cursor:pointer;
}

.ls-tab-ico{
  width:16px;height:16px; display:inline-flex;
  opacity:.9;
}
.ls-tab-ico svg{ width:100%; height:100%; }

.ls-tab.is-active{
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: var(--line);
}
[data-theme="light"] .ls-tab.is-active{
  background: rgba(255,255,255,0.9);
}

.ls-badge{
  font-size: 12px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 10px;
  background: rgba(255,181,92,0.18);
  border: 1px solid rgba(255,181,92,0.25);
  color: #ffb55c;
}
[data-theme="light"] .ls-badge{
  background: rgba(255,181,92,0.22);
  border-color: rgba(255,181,92,0.35);
  color: #b56519;
}

/* Responsive like screenshots */
@media (max-width: 920px){
  .ls-tools{
    position: static;
    justify-content: flex-start;
    margin-top: 10px;
  }
  .ls-h1{ font-size: 38px; }
}

@media (max-width: 520px){
  .ls-h1{ font-size: 34px; }
  .ls-select{ min-width: 170px; }
  .ls-status{
    flex-wrap: wrap;
    gap: 8px;
  }
}
