/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

h1 {
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

button:hover {
    background-color: #555;
}

/* Story Container */
#story-container {
    display: none;
    margin-top: 20px;
}

/* Scrollable Text Area */
#story-text-wrapper {
    max-height: 300px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Custom Scrollbar (Webkit browsers) */
#story-text-wrapper::-webkit-scrollbar {
    width: 10px;
}

#story-text-wrapper::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 5px;
}

#story-text-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #333;
}

/* Audio Player */
audio {
    width: 100%;
    margin-top: 20px;
}
