body {
    font-family: Arial, sans-serif;
    transition: all 0.5s ease-in-out;
    background-color: #{{ team.SecondaryColor }};
    color: #{{ team.TextColor }};
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.header {
    display: flex;
    justify-content: space-between;
    background-color: #{{ team.PrimaryColor }};
    padding: 20px;
}

.team-logo-container, .season-stats, .top-players {
    flex: 1;
    text-align: center;
}

.team-logo {
    width: 100px;
    height: 100px;
}

.top-players {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-players h2 {
    margin-bottom: 10px;
}

.top-players .players {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.player {
    text-align: center;
}

.player img {
    width: 120px;
    height: 120px;
}

.sidebar {
    background-color: #{{ team.PrimaryColor }};
    padding: 20px;
    width: 200px;
}

.main-content {
    background-color: #fff;
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.content-area {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.content-container {
    display: flex;
    background-color: #{{ team.PrimaryColor }};
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

.top-player {
    margin-bottom: 20px;
}

.top-player .stat {
    font-weight: bold;
}

.player-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.player-name {
    font-weight: bold;
    margin-top: 10px;
}

.stat-value {
    font-size: 1.2em;
}
