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

#game-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin-bottom: 30px;
}

#question {
    font-size: 18px;
    margin-bottom: 20px;
}

#options button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#options button:hover {
    background-color: #0056b3;
}

#options button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#feedback {
    margin-top: 20px;
    font-weight: bold;
}

#footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.correct {
    color: green;
}

.incorrect {
    color: red;
}

#conversation-transcript {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 800px;
    width: 100%;
}

#conversation-transcript h2 {
    text-align: center;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.conversation-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.question {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}

.answer {
    color: #333;
    margin-top: 0;
}


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

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    #game-container, #conversation-transcript {
        padding: 15px;
    }
}
