For my project, I am using the `bootstrap-next-table` table in various places and have customized a CSS class to fit my needs.
The issue I am currently encountering is that one component requires the default CSS class which I had overridden:
.table > thead {
display: none !important;
}
However, in another file, I now need this to be changed to:
.table > thead {
display: block;
}
How can I accomplish this task?