/*
Theme Name:   Mon Thème Enfant
Template:     listinghive
*/
.boost-listing {
    cursor: pointer;
    color: #A9A9A9; /* Gris par défaut */
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #A9A9A9; /* Bordure grise par défaut */
    background-color: #FFFFFF; /* Fond blanc par défaut */
    font-size: 12px; /* Texte plus petit */
    display: flex;
    align-items: center;
    margin-top: 5px;
    border-radius: 4px; /* Bordure arrondie */
}

.boost-listing i {
    margin-right: 5px;
    font-size: 18px; /* Taille de l'icône */
}

.boost-listing span {
    display: inline; /* Afficher le texte par défaut */
}

.boost-listing:hover {
    color: #FFFFFF; /* Texte blanc au survol */
    background-color: #FFA500; /* Fond orange au survol */
    border-color: #FFA500; /* Bordure orange au survol */
}

.boost-listing:hover i {
    color: #FFFFFF; /* Icône blanche au survol */
}

.boost-listing .fa-arrow-up {
    font-size: 18px; /* Taille de l'icône de la flèche */
}

/* Masquer le bouton sur les pages spécifiques */
body.hide-boost-listing .boost-listing {
    display: none;
}




