.container-doctorsoul{
    width: 1200px;
    margin: 0 auto;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.oneDrSoul{
    width: 340px;
    height: auto;
    padding: 20px;
    text-decoration: none;
    /*background-color: rgba(255, 255, 255, 0.8);*/
    background: linear-gradient( rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) , rgba(255, 255, 255, 0.8));
    border-radius: 5px;
    transition: 0.3s;
    border-bottom: solid 3px #CF94D9;
}
.oneDrSoul:hover{
    background-color: rgba(255, 255, 255, 0.5);
}
.oneDrSoul > img{
    width: 100%;
    object-fit: cover;
    text-align: center;

}
.titre-OneSoul{
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: bolder;
    color: #3c2a3f;
    letter-spacing: 1px;
    margin-top: 20px;
    font-family: 'Boogaloo', cursive;
}

@media screen and (max-width: 1200px) {
    .container-doctorsoul{
        width: 100%;
    }
    
  }

/*==========================DR soul Article=================*/

.iframe-drsoul{
    width: 1200px;
    margin: 0 auto;
}
.iframe-drsoul iframe{
    width: 100% !important;
}
.description-drsoul{
    background-color: white;
    width: 1024px;
    font-size: 18px;
    margin: 0 auto;
    padding: 20px 20px;
}

@media screen and (max-width: 1200px) {
    .iframe-drsoul{
        width: 100%;
    }
    .description-drsoul{
        width: 96%;
        padding: 0px 0px;
        margin: 0 2%;
    }
  }


/*=================================admin==============================*/

/*Accueil*/
.container-Drsoul-Admin{
    width: 1000px;
    height: auto;
    margin: 0 auto;
}
.container-Drsoul-Admin > div{
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 10px 0px;
    display: flex;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0px 0px 10px grey;
    border-radius: 5px;
}
.container-Drsoul-Admin > div > div{
    width: 150px;
    display: flex;
    justify-content: space-evenly;
}

.buttonAddDrsoul{
    text-decoration: none;
    color: white;
    background-color: #27558d;
    border: solid 1px #27558d;
    font-size: 25px;
    padding: 5px 40px;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bolder;
}
.buttonAddDrsoul:hover{
    color:#27558d;
    background-color: white;
}
.drsoul-titre-admin{
    font-size: 15px;
    font-weight: bolder;
    width: 600px ! important;
}
.DrSoulbuttonView{
    color: #02bd50;
}
.DrSoulbuttonEdit{
    color: #0077c7;
}
.DrSoulbuttonDelete{
    color: #da1600;
}

/*========================edit / new==================*/
.container-edit-drsoul{
    background-color: white;
    width: 500px;
    height: auto;
    margin: 0 auto;
    border-radius: 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.container-edit-drsoul h3{
    margin-bottom: 0;
    text-align: center;
}
.container-edit-drsoul input[type=text]{
    display: block;
    width: 400px;
    margin: 0px auto 30px auto;
}
.container-edit-drsoul input[type=file]{
    display: block;
    margin: 0px auto 30px auto;
    text-align: center;
}
.container-edit-drsoul img{
    display: block;
    margin: 0px auto 30px auto;
    width: 200px;
}
.container-edit-drsoul textarea{
    display: block;
    width: 400px;
    margin: 0px auto 30px auto;
}
.container-edit-drsoul input[type=submit]{
    display: block;
    width: 400px;
    margin: 0px auto 30px auto;
    background-color: #27558d;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 20px;
    color: white;
    font-weight: bolder;
}