body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
    margin: 0;
    background-color: #f0f0f0;
    padding: 20px;
    flex-direction: column;
    min-height: 100vh;
}

#game-container {
    text-align: center;
}

#language-selector {
    margin-bottom: 20px;
}

#language-selector button {
    margin: 0 5px;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
}

#grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
    margin-bottom: 20px;
}

.grid-cell {
    width: 50px;
    height: 50px;
    border: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

#keyboard {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 5px;
    margin-bottom: 20px;
}

.keyboard-key {
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    user-select: none;
}

.correct {
    background-color: #6aaa64;
    color: white;
}

.present {
    background-color: #c9b458;
    color: white;
}

.absent {
    background-color: #787c7e;
    color: white;
}

/* RTL support */
.rtl {
    direction: rtl;
}

.rtl #keyboard {
    direction: ltr; /* Keep keyboard left-to-right */
}
#conversation-transcript {
    margin-top: 50px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.conversation p {
    margin-bottom: 15px;
}


.game-intro {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}
