/*
 * The Cater Menu - Tabs Layout Styles
 * Version: 2.2.0
 */
.tcm-tabs-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0; /* Space for WP Admin Bar. Change to 0 if not needed. */
    z-index: 900;
    display: flex;
    gap: 5px;
   padding: 10px 15px; /* Adds 15px of space on the left and right ends */
    margin-bottom: 30px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.tcm-tabs-nav::-webkit-scrollbar {
    display: none;
}
.tcm-tab-item {
    padding: 10px 20px;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}
.tcm-tab-item:hover {
    background-color: #e9e9e9;
}
.tcm-tab-item.is-active {
    background-color: #f1f1f1;
    color: #894fb3;
    font-weight: bold;
    border-bottom: 3px solid #894fb3;
}
/* UPDATED Category Title to act as a separator */
.tcm-category-section .tcm-category-title {
    background-color: #f1f1f1; /* Light gray background */
    padding: 15px 20px;
    margin: 40px 0 25px 0;
    border-radius: 5px;
    text-align: right; /* Ensure text is aligned right */
    font-size: 1.5em;
}