/* ===== GENERAL LOOK + POSITION ===== */

header {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 99px;
}

.center_header {
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    width: 80%;
    max-width: 1200px;
    min-width: 930px;
    z-index: 1000;
    padding-left: 50%;
    /* BE CAREFUL, BRICOLAGE (only adds fixed padding) */
    padding-right: 50%;
    /* BE CAREFUL, BRICOLAGE (only adds fixed padding) */
    background-image: url("../../img/background2.png");
    opacity: 0.95;
}

.nav_doctor {
    padding: 15px;
    opacity: 0.8;
    border-radius: 0px 0px 25px 25px;
}

.nav_doctor>a {
    font-weight: 300;
    text-decoration: none;
    color: black;
    display: flex;
    font-weight: 500;
    font-size: 18px;
    flex-direction: column;
}

.nav_submenus {
    display: flex;
    align-items: center;
}

.nav_submenus>a {
    font-weight: 400;
    text-decoration: none;
    color: rgb(50, 50, 50);
    margin: 0px 25px;
    opacity: 0.8;
    border-radius: 25px;
    padding: 15px;
}

.nav_submenus>a:not(#nav_rdv):hover {
    text-decoration: underline;
}

/* ===== APPEARENCE OF THE APPOINTMENT BUTTON ===== */

#nav_rdv {
    background: rgba(0, 153, 51, 0.8);
    padding: 15px;
    border-radius: 25px;
    color: white;
    white-space: nowrap;
    transition: background 0.5s;
}

#nav_rdv:hover {
    background-color: rgba(106, 145, 231, 1);
    transition: background 3s;
}

/* ====== ADMIN BUTTON ===== */

#admin_button {
    background-color: red;
    color: white;
    padding: 15px;
    border-radius: 25px;
}