#players {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

#players>div {
    border: 2px solid #333;
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    text-align: center;
    background-color: #0b6623;
    /* dark green table look */
    color: white;
}

#players>div>div:first-child {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.hand {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    min-height: 60px;
    margin-bottom: 10px;
}

.card {
    width: 50px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


.points {
    margin-top: 5px;
    font-size: 1em;
}

.active {
    border: 3px solid yellow;
}

#status {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

button {
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}