/* Bouton rond en haut à droite */
.menu-retour-top {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    text-align: center;
}

.menu-btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #0B6BA7;
    /*c00000*/
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.2s;
}

.menu-label {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

/* Bouton texte en bas de page */
.menu-retour-bottom {
    text-align: center;
    margin-top: 40px;
}

.menu-btn-text {
    display: inline-block;
    padding: 12px 20px;
    background: #0B6BA7;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.2s;
}

/* Effet hover pour les deux boutons */
.menu-btn-home:hover,
.menu-btn-text:hover {
    background: #0066A5;
    /*#900000;*/
    transform: scale(1.1);
}