/* Responsive styles */

/* Desktop layout */
@media (min-width: 1024px) {
    #setlist {
        width: 100%;
    }
    
    #setlist td {
        height: 40px; /* Increase this value to make rows taller */
    }
}

/* Tablet layout */
@media (min-width: 768px) and (max-width: 1023px) {
    #setlist {
        width: 100%;
        font-size: 14px;
    }
    
    #setlist td {
        height: 35px; /* Slightly smaller for tablets */
    }
}

/* Mobile layout */
@media (max-width: 767px) {
    #setlist {
        width: 100%;
        font-size: 14px;
    }

    #setlist th,
    #setlist td {
        padding: 5px;
    }

    #setlist td {
        height: 30px; /* Adjust height for mobile */
    }

    #centre {
        width: 95%;
        padding: 10px;
    }
}

/* General styles for all screen sizes */
#setlist {
    border-collapse: collapse;
}

#setlist th,
#setlist td {
    border: 1px solid #FF9900; /* Restoring the border */
    vertical-align: middle; /* Vertically center content */
}

#setlist td {
    text-align: left;
    position: relative;
}

/* Center audio player in the Sample column */
#setlist td:nth-child(3) {
    text-align: center;
}

#setlist audio {
    vertical-align: middle;
    max-width: 100%; /* Ensure audio player doesn't overflow on small screens */
}

/* Specific styles for the audio player */
audio {
    border: 1px solid #FF9900;
    border-radius: 90px;
    transform: scale(1.05);
    height: 30px; /* Increased height for better visibility */
}

audio::-webkit-media-controls-panel {
    background-color: #FF9900;
}