.smyleee-searchbar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0 28px 0;
}

.smyleee-city-title-filter {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 7px 9px;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(60,130,200,0.09);
    gap: 8px;
    min-width: 340px;
    max-width: 520px;
    width: 100%;
}

.smyleee-search-input {
    flex: 1 1 auto;
    border: none;
    outline: none;
    background: #f4f8fd;
    padding: 13px 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: box-shadow 0.2s;
    box-shadow: 0 0 0 1.5px #e4e7ec;
    color: #23272f;
}

.smyleee-search-input:focus {
    box-shadow: 0 0 0 2px #1ca3e3;
    background: #fff;
}

.smyleee-search-btn {
    background: linear-gradient(90deg,#1ca3e3 70%,#1c8ee3 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 1.09rem;
    cursor: pointer;
    transition: background 0.15s;
}

.smyleee-search-btn:hover {
    background: linear-gradient(90deg,#197ed1 60%,#1484c9 100%);
}

.smyleee-autocomplete-list {
    background: #fff;
    box-shadow: 0 4px 16px 0 rgba(40,80,110,0.14);
    border-radius: 8px;
    margin-top: 4px;
    position: absolute;
    z-index: 99;
    width: 100%;
    max-width: 520px;
    left: 0;
    font-size: 1.02rem;
    overflow-y: auto;
    max-height: 340px;
}

.smyleee-autocomplete-item {
    padding: 13px 18px;
    cursor: pointer;
    border-bottom: 1px solid #f2f4f7;
    color: #1a2848;
    transition: background 0.15s;
}
.smyleee-autocomplete-item:last-child { border-bottom: none; }
.smyleee-autocomplete-item:hover, .smyleee-autocomplete-item.active {
    background: #f4f8fd;
}

.smyleee-autocomplete-item b {
    color: #1ca3e3;
    font-weight: bold;
}
