.page-title {
    margin: 1.5rem 0 3rem;
}

/* Override stat-table max-width for league history */
.stat-table-container .stat-table {
    max-width: 1000px;
}

/* League history specific column styling */
.stat-table .season-cell {
    font-weight: 600;
    min-width: 200px;
    text-align: left;
}

.stat-table .season-cell a {
    color: #07b;
    text-decoration: none;
}

.stat-table .season-cell a:hover {
    text-decoration: underline;
}

.stat-table .date-cell {
    min-width: 100px;
    color: #6c757d;
    font-weight: 500;
}

.stat-table .teams-cell {
    text-align: center;
    font-weight: 600;
    color: #495057;
    min-width: 80px;
}

.stat-table .champion-cell,
.stat-table .runner-up-cell {
    min-width: 150px;
    text-align: left;
}

.stat-table .champion-cell a,
.stat-table .runner-up-cell a {
    color: #07b;
    text-decoration: none;
    font-weight: 500;
}

.stat-table .champion-cell a:hover,
.stat-table .runner-up-cell a:hover {
    text-decoration: underline;
}

.stat-table .champion-cell {
    background-color: rgba(255, 215, 0, 0.1);
}

.empty-seasons {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin: 1rem 0 2rem;
    }
    
    .stat-table .season-cell {
        min-width: 150px;
    }
    
    .stat-table .date-cell {
        min-width: 80px;
    }
    
    .stat-table .champion-cell,
    .stat-table .runner-up-cell {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .stat-table .season-cell {
        min-width: 120px;
    }
    
    .stat-table .champion-cell,
    .stat-table .runner-up-cell {
        min-width: 100px;
    }
}