/* Fix for Tailwind/Bootstrap collapse conflict */
body .collapse:not(.show),
html body .collapse:not(.show) {
    display: none !important;
}
body .collapse.show,
html body .collapse.show {
    display: block !important;
}
.collapse {
    visibility: visible !important;
}
