/* Styles moved from index.html for the soundscape story showcase */
#soundscape-story-container {
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #fafafa;
    margin: 1rem auto;
    max-width: 600px;
    font-family: sans-serif; /* Ensure consistent font */
    box-sizing: border-box;
}

#soundscape-story-container .controls {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
    margin-bottom: 15px;
}


#story-text {
    min-height: 100px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px dashed #ddd;
    background-color: #fff;
    line-height: 1.5;
}
#story-choices button {
    margin: 5px;
    padding: 8px 12px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}
#story-choices button:hover {
    background-color: #0056b3;
}
#story-status {
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
    min-height: 1.2em;
    text-align: center;
}
#story-start-button, #story-stop-sound-button { /* Apply styles to both buttons */
    /* display: block; */ /* Removed - using flexbox now */
    /* margin: 10px auto 15px auto; */ /* Removed - using flexbox gap */
    padding: 8px 15px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#story-start-button {
    background-color: #28a745;
}
#story-stop-sound-button {
    background-color: #dc3545; /* Red for stop */
}


#story-start-button:disabled, #story-stop-sound-button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}
#story-start-button:hover:not(:disabled) {
    background-color: #218838;
}
#story-stop-sound-button:hover:not(:disabled) {
    background-color: #c82333; /* Darker red on hover */
}