.filter_form_outer {
    display: flex;
    justify-content: space-between;
    gap: 6%;
    padding: 10px 20px 20px 20px;
}

.address-filter {
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 35px;
}

.address-filter label {
    color: #ffffff;
}

.address_result {
    width: 60%;
    margin-top: 10px;
    padding: 14px 20px 10px;
    border-radius: 6px;
}

.address_result h4 {
    color: #225199;
    margin-bottom: 8px;
}

.updated-success {
    box-shadow: 0px 1px 3px #00000026;
    background-color: #ffffff;
}

.address_result .address-item p {
    margin-bottom: 8px;
}

.address-filter select {
    border-radius: 8px;
    margin-top: 6px;
    width: 100%;
    color: #225199;
    font-weight: 600;
}

.address-item {
    margin-bottom: 25px;
}


@media screen and (max-width: 768px) {
    .filter_form_outer {
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
        max-width: 400px;
        gap: 30px;
    }

    .address-filter {
        width: 100%;
        gap: 20px;
    }

    .address_result {
        width: 100%;
        margin-top: 0;
    }
}