.game-wrapper {
    margin: 1rem;
    flex: 1;
    align-content: space-between;
    padding: 1rem;
    border-radius: 10px;
}

.game-wrapper.active {
    cursor: pointer;
}

.game-component {
    justify-content: space-evenly;
    text-align: center;
}

.team {
    width: 45%;
}

.team-logo {
    height: 40%;
    width: 40%;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
}


.score-line {
    width: 80%;
    margin: auto;
}

.score-line .score {
    flex: 1;
    display: flex;
    justify-content: center;
}

.link-container a {
    min-width: 50px !important;
}

.stats-container {
    transition: ease-in-out .5s;
}

.stats-container.active {
    max-height: 50vh;
    overflow-y: scroll;
    border-top: solid;
    border-top-color: grey;
    border-top-width: 1px;
    padding-top: 10px;
}

.stats-container.hidden {
    max-height: 0px;
    overflow: hidden;
}

.avatar {
    height: 1.5rem;
}

.avatar-col {
    width: 3rem;
    margin-left: 5rem;
    text-align: center;
}

.player-stats-nav {
    display: flex;
    justify-content: space-evenly;
    margin-top: 1rem;
}