/* ── components-standings.css ── 彩色积分表 + 走势条 ── */

/* ── 走势条 ── */
.form-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.form-dot {
  display: inline-block;
  border-radius: 50%;
}
.form-dot-sm { width: 6px; height: 6px; }
.form-dot-md { width: 8px; height: 8px; }
.form-dot-lg { width: 10px; height: 10px; }
.form-dot-win { background: #10B981; }
.form-dot-draw { background: #F59E0B; }
.form-dot-loss { background: #EF4444; }
.form-label {
  font-size: 10px;
  color: var(--text3);
  margin-right: 4px;
}

/* ── 彩色积分表 ── */
.standing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.standing-table th {
  text-align: left;
  padding: 8px 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 2px solid var(--primary);
}
.standing-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--border);
}
.standing-table tr:hover td {
  background: var(--bg-hover);
}
.standing-table .st-rank {
  width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
}

/* 欧冠区 */
.standing-row-ucl { background: rgba(16,185,129,0.06); }
.standing-row-ucl:hover td { background: rgba(16,185,129,0.12) !important; }
.standing-row-ucl .st-rank { color: #10B981; }

/* 欧联区 */
.standing-row-uel { background: rgba(59,130,246,0.06); }
.standing-row-uel:hover td { background: rgba(59,130,246,0.12) !important; }
.standing-row-uel .st-rank { color: #3B82F6; }

/* 保级区 */
.standing-row-rel { background: rgba(239,68,68,0.06); }
.standing-row-rel:hover td { background: rgba(239,68,68,0.12) !important; }
.standing-row-rel .st-rank { color: #EF4444; }

/* 数值高亮 */
.cell-hot { color: #10B981; font-weight: 700; }
.cell-cold { color: #EF4444; font-weight: 600; }
.cell-pts { font-weight: 800; color: var(--primary); }

/* 数字列对齐 */
.st-num {
  text-align: right;
  font-family: 'Courier New', monospace;
  font-variant-numeric: tabular-nums;
}
.st-name {
  font-weight: 600;
}

/* 积分榜战队队徽 */
.st-badge {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  margin-right: 4px;
}

/* 主客 tab */
.standing-views {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.standing-view-btn {
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--text2);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .15s;
}
.standing-view-btn:hover {
  border-color: var(--primary);
  color: var(--text);
}
.standing-view-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
