body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

#story-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    text-align: center;
}

#image-container {
    margin-bottom: 20px;
}

#story-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    min-height: 200px; /* Placeholder height */
    background-color: #eee; /* Placeholder background */
}

#text-container {
    margin-bottom: 20px;
    text-align: left;
}

#narration-controls {
    margin-bottom: 20px;
}

#choices-container button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

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

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

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