.championships-view {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.player-name {
  width: 200px;
  font-weight: 500;
}

.player-championships {
  display: flex;
  gap: 6px;
}

.championship-svg {
  width: 100%;
  max-width: 1200px;
  height: auto;
  overflow: visible;
}

.year-box {
  fill: white;
  stroke: black;
  stroke-width: 2;
}

.year-label {
  font-family: "Chivo Mono", monospace;
  font-size: 18px;
  font-weight: 300;
}

.player-label {
  font-family: "Chivo Mono", monospace;
  font-size: 16px;
  font-weight: 500;
}

.player-row-line {
  stroke: black;
  stroke-width: 1;
  opacity: 0.35;
}

.championship-dot {
  fill: #222;
  stroke: black;
  stroke-width: 1;
}
.championship-year-line {
  stroke: black;
  stroke-width: 1;
  opacity: 0.4;
}

.championship-dot-outer {
  stroke: black;
  stroke-width: 2;
}

.career-square {
  stroke: black;
  stroke-width: 2;
}

.finals-loss-dot {
  stroke: black;
  stroke-width: 2;
}

.career-bar {
  stroke: black;
  stroke-width: 2;
}

.career-bar-label {
  font-family: "Chivo Mono", monospace;
  font-size: 18px;
  fill: white;
  pointer-events: none;
}



.player-label.clickable:hover {
  fill: #666;
  text-decoration: underline;
}

#player-card-overlay {
  display: none;
}

#player-card-overlay:empty {
  display: none;
}

#player-card-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  z-index: 1000;
  border: 2px solid black;
}