.SubMenu {
    width: 1000px;
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: rgb(53, 53, 53);
}

.MenuList {
    display: flex;
    justify-content: space-between; /* space items evenly */
    height: 46px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.MenuList li {
    flex: 1; /* each item takes equal space */
    text-align: center;
}

.MenuList li a {
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    user-select: none;
    outline: none;
}

.MenuList li:hover {
    cursor: pointer;
}

    .MenuList li.active > a {
        /*color: #cFcFcF;*/
        /*font-weight: normal;*/
       
        text-decoration: underline;
        text-underline-offset: 6px; /* Increase this for more space */
    }

