.meet-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.meet-header-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.meet-header-info { flex: 1; min-width: 0; }
.meet-header-meta {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.meet-header-meta span:not(:last-child):not(.badge)::after {
  content: '\00b7';
  margin-left: 6px;
  color: var(--border-strong);
}
.meet-header-actions { flex-shrink: 0; }
.toggle-wrap { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.toggle { position: relative; width: 36px; height: 20px; cursor: pointer; flex-shrink: 0; }
.toggle input { display: none; }
.toggle .slider {
  position: absolute; inset: 0; background: var(--border-strong); border-radius: 10px; transition: background 0.2s;
}
.toggle .slider::after {
  content: ''; position: absolute; width: 16px; height: 16px; left: 2px; top: 2px;
  background: #fff; border-radius: 50%; transition: transform 0.2s; box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.toggle input:checked + .slider { background: var(--brand); }
.toggle input:checked + .slider::after { transform: translateX(16px); }
.team-row { cursor: pointer; transition: background 0.1s; border-left: 3px solid transparent; }
.team-row:hover { filter: brightness(0.97); }
.team-row td:first-child { user-select: none; }
.lifter-detail { display: none; border-left: 3px solid transparent; }
.lifter-detail.open { display: table-row; }
.lifter-detail td { padding: 0; border-bottom: 2px solid var(--border); }
.lifter-table { width: 100%; border-collapse: collapse; background: var(--surface-alt); }
.lifter-table th { font-size: 11px; padding: 6px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); background: transparent; }
.lifter-table td { font-size: 13px; padding: 6px 16px; border-bottom: 1px solid var(--border); }
.lifter-table tr.non-scoring { opacity: 0.4; }
.expand-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; font-size: 9px; color: var(--text-muted);
  transition: transform 0.15s; flex-shrink: 0;
}
.team-row.expanded .expand-icon { transform: rotate(90deg); }
.rank-1 .rank-cell { color: #b45309; }
.rank-2 .rank-cell { color: #78716c; }
.rank-3 .rank-cell { color: #92400e; }
.team-icon { width: 22px; height: 16px; object-fit: contain; flex-shrink: 0; }
.team-icon-flag { border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }
.team-icon-state { width: 18px; height: 18px; opacity: 0.55; }
.lifter-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.glp-summary-row td { font-size: 12px; font-weight: 600; color: var(--text-muted); border-top: 1px solid var(--border); padding: 6px 16px; }
.scoring-explainer { margin-top: 32px; padding: 20px 24px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.scoring-explainer h4 { font-size: 13px; font-weight: 600; color: var(--text-primary); margin: 0 0 6px; }
.scoring-explainer h4:not(:first-child) { margin-top: 16px; }
.scoring-explainer p { margin: 0 0 8px; }
.scoring-explainer ol { margin: 4px 0 8px 20px; padding: 0; }
.scoring-explainer li { margin-bottom: 2px; }
.scores-table { table-layout: fixed; }
.scores-table col.col-rank { width: 24px; }
.scores-table col.col-score { width: 80px; }
