.container-lieu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    width: 100%;
}

.card{
    width: 100%;
    height : auto;
    border : 1px solid black;
    border-radius: 15px;
    padding: 10px;
    display : flex;
    flex-direction: row;
}

.map_card {
    width: 50%;
    height : 100%;
}
.salle_card {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
}

@media screen and (max-width: 768px) {
    .card{
        width: 90%;
        height : auto;
        border : 1px solid black;
        border-radius: 15px;
        padding: 10px;
        display : flex;
        flex-direction: column;
    }
    .map_card {
        width: 100%;
        height : 50%;
    }
    .salle_card {
        width: 100%;
        height : 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .container-lieu {
        margin-left : 0px;
    }
    
}
