.search-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 99999;
    max-height: 400px;
    overflow-y: auto;
}
.suggest-list {
    list-style: none;
    margin: 0;
    padding: 5px 0;
}
.suggest-list li a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-family: Arial, sans-serif;
}
.suggest-list li a i {
    color: #777;
    font-size: 14px;
    margin-right: 15px;
}
.suggest-list li a:hover {
    background: #eee;
    cursor: pointer;
}
.search-suggestions-dropdown::-webkit-scrollbar {
    width: 8px;
}
.search-suggestions-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.search-suggestions-dropdown::-webkit-scrollbar-thumb {
    background: #ccc; 
}
