#mega-menu-wrap-top-menu #mega-menu-top-menu div .suggestions,
.mega-toggle-blocks-right .suggestions {
    position: absolute;
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 200px;

    overflow-y: auto;
    z-index: 20000;
    width: calc(100% - 2px); /* Subtracting border width */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    top: 100%; /* Positions it directly below the input */
    left: 0; /* Aligns it to the left of the input */
}

#mega-menu-wrap-top-menu #mega-menu-top-menu div .suggestions ul, .mega-toggle-blocks-right .suggestions ul  {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#mega-menu-wrap-top-menu #mega-menu-top-menu div .suggestions li, .mega-toggle-blocks-right .suggestions li {
    padding: 6px ;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#mega-menu-wrap-top-menu #mega-menu-top-menu div .suggestions li:hover , .mega-toggle-blocks-right .suggestions li:hover {
    background-color: #f5f5f5;
}