/* Torjäger Page Specific Styles */
.col-pos {
    width: 50px;
    text-align: center;
}

.col-player {
    min-width: 250px;
}

.col-goals {
    width: 80px;
    text-align: center;
}

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

/* Player Images */
.player-circle-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-dark);
    flex-shrink: 0;
}

.player-circle-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.player-circle-placeholder span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.player-name {
    font-weight: 600;
}

.goals {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--accent-light);
}

/* Top Scorer Highlights */
tr.top-scorer {
    border-left: 3px solid #ffd700;  /* Gold */
}

tr.top-scorer .goals {
    color: #ffd700;
    font-size: 1.5rem;
}

tr.podium {
    border-left: 3px solid #c0c0c0;  /* Silver */
}

/* Player Link */
.player-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.player-link:hover .player-name {
    color: var(--accent-light);
}
