﻿.modal-overlay-moveCustomerModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content-moveCustomerModal {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 700px;
    max-width: 1000px;
    overflow-y: auto;
    overflow-x: hidden;
}
    .modal-content-moveCustomerModal h3 {
        font-weight: 500;
        font-size: 25px;
    }

.modal-content-moveCustomerModal h2 {
    font-size: 30px;
    font-weight: 600;
}

.modal-content-moveCustomerModal p {
    font-size: 18px;
    margin-top: 5px;
}

.title-moveCustomerModal {
    display: flex;
    align-items: center;
    gap: 40px;
}

.infos-moveCustomerModal {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.funtion-moveCustomerModal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.select-moveCustomerModal {
    width: 250px;
}

.infos-display-moveCustomerModal {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #F4F4F4;
    border-radius: 5px;
}

.buttons-moveCustomerModal {
    display: flex;
    gap: 20px;
    margin: 40px 40px 0px 40px;
}

@media (max-width: 600px) {

    .modal-content-moveCustomerModal {
        max-height: 80vh;
        max-width: 100vh;
    }

    .funtion-moveCustomerModal {
        flex-direction: column;
    }

    .select-moveCustomerModal {
        width: 100%;
    }

    .buttons-moveCustomerModal {
        display: flex;
        gap: 20px;
        margin: 0px;
    }
}
