/* ----- ----- */
/*  Player 4   */
/* ----- ----- */

.player_4 {
    width: 200px;
    background-color: darkolivegreen;
}

.player-container {
    height: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 0.7fr 0.7fr 0.5fr;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
        "ProfilePic Card1 Card2 PotOdds"
        "ProfilePic Name Name Name"
        "ProfilePic Bet Bet Bet";
    justify-content: center;
    width: fit-content;
}

.ProfilePic {
    grid-area: ProfilePic;
    width: 50px;
    align-content: center;
}

.Card1 {
    grid-area: Card1;
}

.Card2 {
    grid-area: Card2;
}

.PotOdds {
    grid-area: PotOdds;
    width: fit-content;
    margin: auto;
    background-color: #191c3b;
    color: white;
    font-weight: bold;
    border-radius: 5px 5px 0px 0px;
}

.Name {
    grid-area: Name;
    color: black;
    background-color: white;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid white;
    text-align: left;
    font-size: 30px;
}

.Bet {
    grid-area: Bet;
    color: white;
    background-color: black;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid white;
    text-align: left;
    font-size: 20px;
}
