https://getbootstrap.com/docs/5.1/content/tables/#overview
How can I override and modify the bootstrap 5 table border below the headline?
I want to achieve this with simple CSS override, not using SASS.
I tried the following, which did not have any effect:
.table > thead > tr > th {
border-bottom-color: red !important;
}