/* ============================================================
   stat-tips.css — 지표 설명 팝업(공용). stat-tips.js 와 한 쌍.
   전 서비스 표 헤더·라벨 셀에 커서를 올리면(모바일=탭) 뜨는 힌트.
   구 .saber-stat-popup(login.html 로컬) 디자인을 그대로 공용화.
   ============================================================ */
.stat-tip {
    position: fixed;
    z-index: 10050;
    max-width: 260px;
    background: #1f2d3d;
    color: #fff;
    border-radius: 8px;
    padding: 9px 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    font-size: 12px;
    line-height: 1.5;
    pointer-events: none;           /* 팝업 위로 커서가 지나가도 호버 상태 유지 */
    opacity: 0;
    transition: opacity .12s;
    word-break: keep-all;
}
.stat-tip.show { opacity: 1; }
.stat-tip.pinned { pointer-events: auto; }   /* 탭으로 고정된 팝업(내부 목록 스크롤 등) */
.stat-tip-title { font-weight: 700; margin-bottom: 3px; }
.stat-tip-body { color: #d7deea; }
.stat-tip-body b { color: #fff; }
/* 추가 목록(예: 주 포지션 → 포지션별 경기수) — 첫 줄 구분선, 주 항목 강조 */
.stat-tip-list { margin-top: 8px; padding-top: 6px; border-top: 1px solid rgba(255, 255, 255, .2); min-width: 120px; }
.stat-tip-row { display: flex; justify-content: space-between; gap: 14px; }
.stat-tip-row.main { color: #fff; font-weight: 700; }
