    #search-widget {
        position: relative;
    }

    #search-bar {
        width: 100%;
        height: 30px;
        padding: 10px;
        margin-bottom: 0px !important;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background: white;
        color: black !important;
    }

    #search-button {
    position: absolute;
    right: 2px;
    top: 5px;
    background-color: white;
    padding: 0px 12px !important;
    border: none;
    padding: 0px;
    color: black;
    font-size: 16px;
    cursor: pointer;
}
   

    #search-suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border: 1px solid #ccc;
        background-color: white;
        max-height: 250px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        display: none; /* Initially hidden */
    }

    #search-suggestions.show {
        display: block !important; /* Force the display to 'block' for testing */
    }

    .suggestion-item {
        padding: 10px;
        cursor: pointer;
        font-size: 16px;
    }

    .suggestion-item:hover {
        background-color: #f1f1f1;
    }

    /* Styling for "No results found" */
    .suggestion-item.no-results {
        font-style: italic;
        color: #888;
    }