/* Custom CSS for Collapse/Dropdown functionality */
.collapse {
    /* Initially hide the content */
    display: none;
    overflow: hidden; 
    /* You can add transition properties here for animation if desired */
}

.collapse.show {
    /* Display the content when the 'show' class is toggled */
    display: block;
}

/* Optional: Move the icon to the right side of the header */
#filterIcon {
    float: right;
}