/* Additional styles for the mixes section */

#mixes h2 {
    color: #fff; /* Light heading color */
}

#file-list {
    margin-top: 20px; /* Add some space between the heading and the file list */
    /* Remove or adjust the background color */
    background-color: transparent; /* Set a transparent background color */
}

#file-list a {
    display: block; /* Display each file link on a new line */
    margin-bottom: 10px; /* Add space between each file link */
    color: #007bff; /* Change link color */
    text-decoration: none; /* Remove underline from links */
}

#file-list a:hover {
    text-decoration: underline; /* Underline links on hover */
    color: #0f0; /* Change link color */
}

/* Styles for file entries */
.file-entry {
    margin-bottom: 20px; /* Adds spacing between file entries */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Arrange children vertically */
    align-items: center; /* Center align children horizontally */
}