.full_width_container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 8px 8px;
    font-size: small;
    border-radius: 8px;
    font-weight: bold;
    color: white;
}

.sub_title_container {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 8px 8px;
    font-size: small;
    border-radius: 8px;
    font-weight: bold;
    color: white;
}

.left_child {
    width: calc(100% / 3);
    text-align: left;
    vertical-align: top;
    align-content: start;
}

.middle_child {
    width: calc(100% / 3);
    vertical-align: top;
    text-align: center;
}

.right_child {
    width: calc(100% / 3);
    vertical-align: top;
    text-align: right;
}

.lineups_unshaded_container {
    width: 100%;
    padding: 16px 16px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    color: white;
    font-size: small;
}

.lineups_shaded_container {
    width: 100%;
    padding: 16px 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    color: white;
    font-size: small;
    background-color: #0d242c;
}

.player_position {
    color: white;
    font-weight: bold;
    width: 20px;
    margin-right: 4px;
    font-size: small;
}

.player_name {
    font-weight: bold;
    color: white;
    margin-right: 8px;
    margin-left: 8px;
    font-size: small;
}
.player_stats {
    font-weight: normal;
    color: white;
    font-size: small;
}

.player_country_flag {
    width: 24px;
    height: 14px;
    margin-right: 8px;
}

.lineup_left_player {
    width: calc(100% / 2);
    text-align: left;
    display: flex;
    flex-direction: row;
    vertical-align: center;
    align-content: start;
}

.lineup_right_player {
    display: flex;
    flex-direction: row;
    float: right;
    justify-content: flex-end;
    width: calc(100% / 2);
    text-align: right;
    vertical-align: center;
    align-content: end;
}
