.suggestion-box {
    position: absolute;
    top: 100%; /* directly below the input */
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    display: block;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* Show by default */
#search-button {
    display: inline-block;
}

/* Hide between 768px and 1050px */
@media (min-width: 768px) and (max-width: 1050px) {
    #search-button {
        display: none;
    }
}
