.parent-button-mobile {
    height: 60px;
    width: 100%;
    background-color: black;
    text-align: end;
    display: none;
    position: fixed;
    top: 0;
    z-index: 500;
}

/* **************************************
*       Media Query pour TABLETTE
*************************************** */
@media (max-width: 768px) {
    .parent-button-mobile {
        display: unset;
    }
}

/* **************************************
*       Media Query pour MOBILE
*************************************** */
@media (max-width: 480px) {
    .parent-button-mobile {
        display: unset;
    }
}

.button-burger-navbar-left {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.button-burger-navbar-left img{
    height: 60px;
}



/* Div parent des boutons */
.div-btn-action {
    display: flex;
    align-items: center;
}

.div-btn-action a {
    margin-right: 5px;
}

.btn-action {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: none;
    border: none;
    background: none;
    margin-right: 5px;
    margin-left: 5px;
}

.div-action-title {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-action:hover {
    border: 2px solid black;
    /* background-color: rgb(133, 124, 124); */
    border-radius: 50%;
}

.button-manage {
    display: flex;
}

.div-button {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 5px;
}


/* Login */
.btn-login {
    background-color: black;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gold;
}

.btn-login.login {
    color: rgb(89, 147, 167);
}

.btn-login.back {
    color : #d79b9d;
}

/* **************
*   Corbeille 
*****************/
.btn-trash {
    cursor: pointer;
    margin: 5px;
    width: 25px;
}

.trash {
    width: 25px;
}

/* **************
*   Modification 
*****************/
/* .btn-edit {
    cursor: pointer;
    margin: 5px;
    width: 25px;
} */

.btn-edit{
    background-color: #a87a36;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gold;
    color: #000000;
    margin: 10px;
}

/* **************
*   Ajout 
*****************/
.btn-add-title {
    cursor: pointer;
    margin: 5px;
    /* width: 25px; */
}


.btn-add {
    background-color: #54a836;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gold;
    color: #000000;
    margin: 10px;
}


/* *******************
*   Retour en arrière 
**********************/
.btn-back {
    background-color: gray;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gold;
    color: white;
    margiN: 10px;
}


/* .effect-button {
    box-shadow: 
        0 4px 3px 1px #FCFCFC, 
        0 6px 8px #D6D7D9, 
        0 -4px 4px #CECFD1, 
        0 -6px 4px #FEFEFE, 
        inset 0 0 3px 0 #CECFD1;
}

.effect-button:hover {
    box-shadow: 
        0 4px 3px 1px #FCFCFC, 
        0 6px 8px #D6D7D9, 
        0 -4px 4px #CECFD1, 
        0 -6px 4px #FEFEFE, 
        inset 0 0 3px 3px #CECFD1;
} */

.btn-footer-form {
    min-width: 140px;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
}

.btn-footer-form:hover {
    border: 2px solid black;
}

.btn-footer-form.add{
    background-color: #93bc39;
    color: black;
}

.btn-footer-form.back{
    background-color: #979797;
    color: white;
}

/* ******************************************
* Bouton pour les modals 
****************************************** */
.btn-modal-valid {
    background-color: #54a836;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gold;
    color: #000000;
    margin: 10px;
}

.btn-modal-cancel {
    background-color: gray;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gold;
    color: #000000;
    margin: 10px;
}

