/* Adds a horizontal scrollbar for better navigation in-case there's too many tabbers */
.ul.tabbernav {
display: flex;
overflow-x: scrollhidden; /* Initially hide the scrollbar */ white-space: nowrap;
line-height: 18px !important;
}
.ul.tabbernav.overflow {
overflow-x: scroll; /* Show the scrollbar when needed */
}