/* Styles pour le bouton "Retour vers Énergie+" */
.retour-energie-plus {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background-color: #E30613;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.retour-energie-plus:hover {
    background-color: #c00510;
}

.retour-energie-plus img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

/* Styles pour l'adaptation mobile */
@media (max-width: 768px) {
    .retour-energie-plus {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .retour-energie-plus img {
        width: 16px;
        height: 16px;
    }
}
