.music-container {
    width: 100%; /* Container scales to fit the page width */
    margin: 20px auto; /* Center the container itself */
    display: flex;
    flex-direction: column; /* Stack child elements vertically */
    /*align-items: center; !* Center horizontally *!*/
    /*gap: 20px; !* Optional: Adds space between SVGs *!*/
}

.music-container svg {
    display: block;
    width: 100%; /* SVG scales proportionally to the container */
    height: auto; /* Maintain aspect ratio */
}

.music-container ol {
    width: 100%; /* Make the list span the full width of the container */
    margin-left: 0;
    padding-left: 20px;
    text-align: left; /* Ensure the text aligns to the left */
    list-style-position: inside; /* Ensures list numbers align with the text */
}

