.toggle-compartilhamento {
    position: relative;
}

.share-button {
    background-color: #FF6600;
    color: white;
    padding: 2px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius:200px;
    width:50px;
    height:50px;
}



#share-options {
    
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    top: 100%; /* Alinha abaixo do botão */
    left: 0;
    z-index: 1000; /* Garante que fique acima do conteúdo */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#share-options a {
    display: block;
    margin: 5px 0;
    color: red !important;
    font-size: 20px;
    text-decoration: none;
}


#share-options a:hover {
    color: #005f6b;
}