.city-search-wrapper {
    width: 100%;
    padding: 0;
}

.city-search-form {
    display: flex;
    position: relative;
    width: 100%;
}

.city-search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #e8e8e8;
    box-sizing: border-box;
}

.city-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: #e8e8e8;
    z-index: 999;
    border-radius: 25px;
}

@media (max-width: 768px) {
    .city-search-input {
        padding: 8px;
        font-size: 14px;
    }

    .city-search-results {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .city-search-wrapper {
        width: 95%;
        margin: 0 auto;
    }

    .city-search-input {
        padding: 6px;
        font-size: 12px;
    }

    .city-search-results {
        max-height: 120px;
    }
}
