/*===================================Section Doctolib ==========================*/

#afficheDoctolib {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.boutonDoctolib img {
    height: 160px;
    width: 500px;
    object-fit: contain;
}

.boutonDoctolib {
    border-radius: 46px;
    border-color: #1699E2;
    background-color: white;
}

/*================Responsive Doctolib =======================*/

@media screen and (max-width: 480px) {
    #afficheDoctolib {
        margin-top: 5rem;
    }

    #afficheDoctolib img {
        height: 80px;
        width: auto;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    #afficheDoctolib {
        margin-top: 5rem;
    }
}

/*===================================Section Description contaxt ==========================*/

#descrSiteNum {
    margin-top: 10px;
    background-color: #093C09;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.descrSite {
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.descrSite:last-of-type {
    margin-bottom: 20px;
}

.descrSite ul {
    list-style-type: square;
}

.descrSite h4 {
    font-size: 1.3em;
}

.descrSite img {
    height: 125px
}

/*================Responsive Description Contact =======================*/

@media screen and (max-width: 480px) {
    #descrSiteNum h3 {
        font-size: 1.2em;
    }

    #descrSiteNum {
        margin-bottom: 1em;
    }

    .descrSite {
        display: flex;
        width: auto;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 20px;
    }

    .descrSite:last-of-type {
        margin-bottom: 20px;
    }

    .descrSite ul {
        list-style-type: square;
    }

    .descrSite h4 {
        font-size: 1.1em;
    }

    .descrSite img {
        height: auto;
        margin-right: 1rem;
    }

}

/*===================================Section Tableau de présence ==========================*/

#tableauCs {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.presenceMed {
    margin-top: 20px;
}

#tableauCs table {
    border: solid 2px black;
    height: 750px;
    width: 750px;
    text-align: left;
    border-collapse: collapse;
}

#tableauCs table thead {
    font-size: 1.2em;
    text-align: center;
}

#tableauCs table td {
    border: solid 1px black;
    padding-left: 10px;
    font-size: 1.1em;
}

.open {
    background-color: green;
}

.closed {
    background-color: darkred;
}

/*================Responsive Tableau de Présence =======================*/

@media screen and (max-width: 480px) {
    #tableauCs {
        display: none;
    }
}
