.ajax-search-wrapper-73f4cf41 {
    position: relative;
    width: 100%;
}

.ajax-search-form-73f4cf41 {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.ajax-search-input-73f4cf41 {
    flex-grow: 1;
    border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.ajax-search-btn-73f4cf41 {
    background: #19A974; /* Changed to primary green */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ajax-search-btn-73f4cf41 i {
    font-size: 16px;
}

.ajax-search-btn-73f4cf41 svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.ajax-search-results-73f4cf41 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
}

.ajax-search-results-73f4cf41.show {
    display: block;
}

.ajax-search-results-73f4cf41 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ajax-search-results-73f4cf41 li {
    border-bottom: 1px solid #f5f5f5;
}

.ajax-search-results-73f4cf41 li:last-child {
    border-bottom: none;
}

.ajax-search-results-73f4cf41 a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.ajax-search-results-73f4cf41 a:hover {
    background: #f9f9f9;
}

.ajax-search-results-73f4cf41 a em {
    font-size: 0.85em;
    color: #888;
    margin-left: 5px;
}

.ajax-search-results-73f4cf41 .no-results {
    padding: 15px;
    color: #777;
    text-align: center;
}