#responsive-menu-container {
    padding: 10px 0;
}
.stc-responsive-menu {
    display: flex;
    justify-content: flex-start;
}
.stc-menu-list {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
}
.stc-menu-item {
    position: relative;
}
.stc-menu-item a,
#more-button {
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    background: transparent;
    font-weight: normal;
    box-shadow: unset;
}
.stc-menu-item a:hover,
#more-button:hover {
    background: #333;
    color: #fff;
}

.stc-menu-item a.active {
    background: #333;
    color: #fff;
}
.stc-more-dropdown .stc-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 99;
}
.stc-more-dropdown.open .stc-dropdown-content {
    display: flex;
}
.stc-more-dropdown .stc-dropdown-content li {
    padding: 8px 12px;
    white-space: nowrap;
}
.stc-more-dropdown .stc-menu-item a{
    width: 100%;
}
#more-button.active {
    background: #333;
    color: #fff;
}