﻿.audio-gallery {
    display: flex; /* Enables Flexbox layout */
    justify-content: space-around; /* Distributes items evenly with space around them */
    gap: 20px; /* Adds space between the audio items */
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.audio-item {
    display: flex;
    flex-direction: column; /* Stacks the title and audio player vertically within each item */
    align-items: center;
    text-align: center;
    flex: 1; /* Allows items to grow and take up equal available space */
    max-width: 300px; /* Optional: Sets a maximum width for better control */
}

/* Optional: Basic styling for the audio element and title */
audio {
    width: 100%;
    margin-top: 10px;
}

h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}
