.pokerContainer {
    width: 100%;
    max-width: 400px;

    border-radius: 8px;

    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.topSection {
    display: flex;
    justify-content: space-between;
}

.playerSection {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.playerName {
    color: white;
    font-weight: bold;
    font-size: 14px;
    background: #000;
    padding: 2px 8px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}

.playerCards {
    display: flex;
    gap: 5px;
}

.boardSection {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.boardTitle {
    color: white;
    font-weight: bold;
    font-size: 14px;
    background: #000;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}

.boardCards {
    display: flex;
    gap: 5px;
    justify-content: flex-start;
}

.cardImage {
    width: 35px;
    height: 48px;
    border-radius: 3px;
    object-fit: cover;
}