/* Menu */
.MenuAdmin
{
    display:flex;
    width:100%;
    align-items: center;
    justify-content: space-around;
    height:45px;
    background-color:rgb(30, 63, 100);
}

.menuadmin-part a
{
    color:white;
    text-transform: uppercase;
    text-decoration: none;
}

/* Menu Gauche */
.MenuAdminGauche
{
    display:flex;
    flex-direction:column;
    width:100%;
    padding-top:2%;
    padding-bottom:2%;
    height:auto;
    align-items:center;
    font-size:13px;
    background-color:rgb(248,248,248);
}

.menuadmingauchelogo
{
    width:30%;
    border-radius:52%;
    height:auto;
    margin-top:5%;
    margin-bottom:5%;
}

.menuadmingauche-liens
{
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:8px;
    width:80%;
    margin-top:2%;
    margin-bottom:2%;
    text-align:center;
    text-transform:uppercase;
    height:45px;
    border-radius:10px;
    text-decoration:none;
    color:white;
    border:1px solid rgb(30, 63, 100);
    background-color:rgb(30, 63, 100);
    cursor:pointer;
}

/* Menu Haut */
.MenuHaut
{
    display:none;
}