.gameContainer {
    display: flex;
    width: 100%;
    margin-top: 30px;
}

.gameData {
    background-color: #e44c9d7b;
    flex: 0 0 30%;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.playArea {
    background-color: #e44c9d7b;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.label {
    margin-bottom: 10px;
}

.status {
    margin-top: 20px;
}

.card {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.front, .back {
    width: 100px;
    height: 100px;
    backface-visibility: hidden;
    border-radius: 10px;
}

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.unclickable {
    pointer-events: none;
}

.hidden {
    display: none;
}