 #searchResults {
    background-color: white;
    border: 1.5px solid #24469C;
    border-top: none;
    border-radius: 7px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
    display: none;
    position: absolute;
    left: 0;
   /* // top: -150px; */
   bottom: 60px;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
} 

#searchResults li {
    margin: 0;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
    border-radius: 10px;
    padding-left: 12px;
}

#searchResults li:last-child {
    border-bottom: none;
}

ul li:not(.menu-item)::after {
    background-color: #00000000;
}

#searchResults li:hover {
    background-color: #24469C;
    padding-left: 16px;
}

#searchResults li:hover .title,
#searchResults li:hover .description {
    color: #fff;
}

#searchResults a {
    display: block;
    width: 100%;
    padding: 12px 18px;
    text-decoration: none;
    color: inherit;
}
Title style 
#searchResults .title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    display: block;
    color: #212529;
}
 /* Description style with line clamp (2 lines max)  */
 #searchResults .description {
    font-size: 11px;
    color: #6c757d;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
} 

/* Scrollbar styles */
 #searchResults::-webkit-scrollbar {
    width: 8px;
}

#searchResults::-webkit-scrollbar-track {
    background: none;
}

#searchResults::-webkit-scrollbar-thumb {
    background: #24469C;
    border-radius: 4px;
}

#searchResults::-webkit-scrollbar-thumb:hover {
    background: #24469C;
} 

strong {
    color: #fec269;
}