

    /* Search Overlay Styles */
    #search-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 9999;
    }

    #search-overlay .search-form {
        display: flex;
        gap: 10px;
        width: 90%;
        max-width: 600px;
    }

    #search-overlay .search-field {
        flex: 1;
        padding: 12px 15px;
        font-size: 18px;
        border-radius: 8px;
        border: none;
    }

    #search-overlay .search-submit {
        padding: 12px 20px;
        font-size: 18px;
        border: none;
        background-color: #016b61;
        color: #fff;
        border-radius: 8px;
        cursor: pointer;
    }

    #search-overlay #close-search {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 30px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Suggestions dropdown */
    .search-suggestions {
        position: absolute;
        top: 60px; /* below input */
        width: 90%;
        max-width: 600px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        display: none;
        z-index: 10000;
        overflow: hidden;
    }

    .suggestion-item {
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }

    .suggestion-item a {
        text-decoration: none;
        color: #016b61;
        font-weight: 500;
    }

    .suggestion-item:hover {
        background: #f0f0f0;
    }
