/* Table column styling for standings table */
.team-column {
    width: 15%; /* Fixed width for team column */
    text-align: left;
}

.stat-column {
    width: calc((100% - 15%) / 8); /* Divides remaining 85% equally among 8 stat columns */
    text-align: center; /* Center the content within the column */
}

/* Full-width table for team stats page */
.full-width-table {
    width: 100%;
}

/* Base styles for all stat cells */
.stats-cell {
    text-align: center;
}

/* Team column for hitter stats */
.stats-cell.team-name {
    width: 15%; /* Fixed width for team column */
    text-align: left;
}

/* All other hitter stat columns */
.stats-cell:not(.team-name) {
    width: calc((100% - 15%) / 15); /* Divides remaining 85% among 15 stat columns */
}

/* Team column for pitcher stats */
.pitcher-stats-cell.team-name {
    width: 15%; /* Fixed width for team column */
    text-align: left;
}

/* All other pitcher stat columns */
.pitcher-stats-cell:not(.team-name) {
    width: calc((100% - 15%) / 15); /* Divides remaining 85% among 15 stat columns */
}

