body {
    margin: 0;
    min-height: 100vh;
}
header{
    padding: 0px 20px;
    background-color: white;
}
.container{
    max-width: 100%;
    padding-left: 20px ;
    padding-right: 20px ;
}

header , header .container{
    max-width: 100%;
}

header .container{
    display: flex;
    justify-content: space-between;
}

header .container .logo1 img,header .container .logo2 img {
    max-width: 100%;
    height: 120px;
    width: auto;
}

main{
    background-color: #64837e;
    padding: 20px;
    min-height: calc( 100vh - 124px ) ;
}
.home_page{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

.home_page div.rdv_btns a {
    display: block;
    padding: 15px 30px;
    color: #64837e;
    background-color: white;
    border: 2px solid white;
    transition: .5s;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border-radius: 25px;
}

.home_page div.rdv_btns a:hover{
    transition: .5s;
    background-color: #64837e;
    color: white;
}

main .container .welcome_msg h2{
    color: white;
    margin-bottom: 45px;
}
main .container .welcome_msg h2 span{
    color :red;
}
.welcome_msg_home{
    display: block;
    max-width: 100%;
}
.welcome_msg_home h2{
    color: white;
    /* margin-bottom: 45px; */
    text-align: center;
}
main .users_table{
    width: max-content;
    height: auto;
    max-width: 100%;
    margin-left:auto ;
    margin-right: auto;
    margin-bottom: 30px;
}

main .users_table table,main .users_table table tr,main .users_table table td,main .users_table table th {
    border: 2px solid black;
    /* border: 1px solid black; */
    border-collapse: collapse;
}

main .users_table table td,main .users_table table th{
    padding: 5px 10px;
}

main .users_table table td a{
    color: white;
    text-decoration: none;
    transition: .5s;
}

main .users_table table td a:hover{
    color: black;
    transition: .5s;
}
.container .navigation_btns{
    display: flex;
}
.container .navigation_btns a{
    display: block;
    color: white;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: .5s;
}

.container .navigation_btns a:hover{
    color: black;
}
.mr5{
    margin-right: 15px;
}

.formulaire_reservation form label{
    font-size: 20px;
    color: white;
    font-weight: 500;
    margin-right: 20px;
}

.formulaire_reservation form{
    
}

.submit_btn{
    cursor: pointer;
    transition: .5s;
    background-color: white;
    border: 2px solid white;
    color: #64837e;
    font-weight: 500;
    font-size: 16px;
    border-radius: 20px;
    padding: 5px 10px;
}

.submit_btn:hover{
    transition: .5s;
    color: white;
    background-color: #64837e;
}