/**
* Theme Name: Spaciaz Child
* Description: This is a child theme of Spaciaz, generated by Merlin WP.
* Author: <a href="https://wpopal.com/">Opalthemes</a>
* Template: spaciaz
* Version: 1.2.0
*/
/* Autocomplete Container */
.ew-input-group {
    position: relative;
    width: 100%;
    flex: 1; /* Adjust based on Spaciaz's flexbox layout */
}

/* The Text Input */
#ew-client-search {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 30px; /* Matches the pill-shape in your screenshot */
    background-color: #f4f5f7;
    font-size: 15px;
    color: #333;
    outline: none;
    box-sizing: border-box;
}

#ew-client-search:focus {
    background-color: #eaeef2;
}

/* The Suggestions Dropdown */
.ew-autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

.ew-autocomplete-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ew-autocomplete-dropdown li.ew-suggestion {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: all 0.2s ease-in-out;
}

.ew-autocomplete-dropdown li.ew-suggestion:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.ew-autocomplete-dropdown li.ew-suggestion:hover {
    background-color: #fff4eb; /* Soft orange hover */
    color: #ff6a00; /* Matching the orange search button */
}