body {
    font-family: Arial, sans-serif;
    background-color: #2e7d32;
    color: white;
    text-align: center;
}

#players {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.player {
    border: 2px solid white;
    padding: 10px;
    border-radius: 10px;
    width: 150px;
}

.card {
    display: inline-block;
    width: 50px;
    height: 70px;
    border: 1px solid white;
    margin: 5px;
    line-height: 70px;
    font-weight: bold;
    border-radius: 5px;
    background-color: white;
    color: black;
}

button {
    margin: 5px;
    padding: 8px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

#pot {
    font-size: 20px;
    margin: 10px 0;
}
