.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.game-board {
    width: 800px;
    height: 400px;
    background-color: green;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Select the played-cards container inside the game-board */
.game-board .played-cards {
    width: 100%; /* Ensure full width */
    display: flex;
    justify-content: space-between; /* Adjust alignment as needed */
}

/* Select each individual played card */
.game-board .played-card {
    width: 100px;
    height: 150px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid black;
    position: relative;
}

.player-hand {
    width: 800px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.computer-hands {
    width: 800px;
    display: flex;
    justify-content: space-between;
}

.computer-hand {
    width: 120px;
    height: 180px;
    background-color: gray;
    border-radius: 5px;
}

.ui {
    width: 800px;
    display: flex;
    justify-content: space-between;
}

.card {
    width: 100px;
    height: 150px;
    background-color: white;
    border-radius: 10px;
    border: 1px solid black;
    position: relative;
}

.card .top-left,
.card .bottom-right {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.card[data-suit="hearts"] .top-left,
.card[data-suit="diamonds"] .top-left,
.card[data-suit="hearts"] .bottom-right,
.card[data-suit="diamonds"] .bottom-right {
    background-color: red; /* Red color for Hearts and Diamonds */
}

.card[data-suit="clubs"] .top-left,
.card[data-suit="spades"] .top-left,
.card[data-suit="clubs"] .bottom-right,
.card[data-suit="spades"] .bottom-right {
    background-color: black; /* Black color for Clubs and Spades */
}


.card .top-left {
    top: 5px;
    left: 5px;
}

.card .bottom-right {
    bottom: 5px;
    right: 5px;
}

.card .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.card .value {
    font-size: 24px;
}

.card .suit {
    font-size: 36px;
    color: black; /* Default color for suit */
}

.card[data-suit="hearts"] .suit,
.card[data-suit="diamonds"] .suit {
    color: red; /* Red color for Hearts and Diamonds */
}

