/* Positionnement de base et styles pour les liens */
.vlt-fixed-socialsss a {
    position: relative;
    display: inline-block;
    padding: 10px;
    margin: 10px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 50%; /* Pour arrondir les icônes si besoin */
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

/* Infobulle */
.vlt-fixed-socialsss a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%; /* Positionnement au-dessus du lien */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    font-size: 12px;
    z-index: 100; /* Assure que l'infobulle est au-dessus d'autres éléments */
}

/* Flèche de l'infobulle */
.vlt-fixed-socialsss a::before {
    content: "";
    position: absolute;
    bottom: 110%; /* Juste au-dessus de l'élément */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

/* Affichage de l'infobulle lors du survol */
.vlt-fixed-socialsss a:hover::after,
.vlt-fixed-socialsss a:hover::before {
    opacity: 1;
    visibility: visible;
}
