
#menu-container {
    padding: 12px 24px;
}
.category-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.category-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.category-tabs.dragging {
    cursor: grabbing;
    user-select: none;
}
.category-tab {
    cursor: pointer;
    padding: 1rem;
    min-width: 145px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 15px;
    text-align: center;
}

.category-tab.active:before {
    content: "";
    display: block;
    border-top: 4px solid var(--secondary-alt);
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 0;
}
.category-tab.active {
    position: relative;
    font-weight: bold;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.sticky-header {
    position: sticky;
    z-index: 100;
    top: 0;
    left: 0;
    padding-top: 16px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-tabs.sticky {
    position: sticky;
    z-index: 100;
    top: 76px;
    left: 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
