    <style>
.city_list_with_images {
    padding: 30px 0;
}

.city_list_with_images h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: bold;
}

.city_list_with_images ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* allows wrapping on smaller screens */
    gap: 20px;
}

.city_list_with_images ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    width: 120px;
    transition: background 0.3s ease;
}

.city_list_with_images ul li:hover {
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.city_list_with_images ul li img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.city_list_with_images ul li span {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
/*search bar*/
        .search_bar_wrapper {
    position: absolute;
    top: 50px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100; /* Must be higher than container */
    width: 90%;
    max-width: 900px;
}

.search_form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    justify-content: center;
}

.search_form input,
.search_form select {
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    min-width: 200px;
}

.search_form button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search_form button:hover {
    background-color: #e05555;
}


</style>