
.search-suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: 22%;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}
@media (max-width: 768px) {
    .search-suggestions {
        width: 85%; /* Take full width on smaller screens */
        font-size: 14px; /* Reduce font size for better fit */
    }
}

.search-suggestions li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.search-suggestions li:last-child {
    border-bottom: none;
}

.search-suggestions li a {
    text-decoration: none;
    color: black;
    display: block;
}

.search-suggestions li:hover {
    background: #f8f9fa;
}