.playerCollapse-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    font-size: .9em;
    overflow: hidden;
    opacity: 0;
    transition: all .5s ease;
}
.playerCollapse-body.show {
    padding-top: 8px;
    margin-top: 8px;
    border-top: 2px solid var(--secondary-light2);
    max-height: 1500px;
    opacity: 1;
}

.player-details-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
}
.player-details-header {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: .25em;
}
.player-details-content {
    display: flex;
    flex-direction: column;
    gap: .25em;
    margin-bottom: .5em;
}

.playerMatchStats {
    display: flex;
    margin-inline: 1em;
    align-items: center;
    width: auto;
    gap: 1em;
}
.playerStatsItem {
    display: flex;
    flex-direction: row;
    gap: .5em;
    white-space: nowrap;
    width: 100%;
    height: 100%;
    align-items: center;
}
.playerStatsValue {
    font-weight: 600;
}