.salient-share-buttons {
    margin: 0 0 40px 0;
}

.share-button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

share-button-group a {}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #2c3e50;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    min-width: 110px;
    justify-content: center;
}

.share-btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-icon {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

/* Dropdown styles */
.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-dropdown-content {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 1000;
    margin-bottom: 8px;
    border: 1px solid #ddd;
}

.share-dropdown:hover .share-dropdown-content {
    display: block;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    text-decoration: none;
    color: #2c3e50;
    border: 2px solid #2c3e50!important;
    border-radius: 200px;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 600
}

.share-option:last-child {
    border-bottom: none;
}

.share-option:hover {
    background: #f8f9fa;
    color: white;
}

.print-link:hover {
    background: #2c3e50;
    border: 2px solid #2c3e50!important;
}

.whatsapp:hover {
    background: #25D366;
    color: white;
    border: 2px solid #25D366!important;
}

.facebook:hover {
    background: #1877F2;
    color: white;
    border: 2px solid #1877F2!important;
}

.email:hover {
    background: #EA4335;
    color: white;
    border: 2px solid #EA4335!important;
}

.social-icon {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

/* Stili di stampa */
@media print {
    .salient-share-buttons {
        display: none !important;
    }
}

/* Stili responsive */
@media (max-width: 768px) {
    .share-button-group {
        
    }
    
    .share-text {
        display: none
    }

    .share-btn {
        justify-content: center;
    }

    .share-dropdown-content {
        left: 50%;
        transform: translateX(-50%);
        min-width: 160px;
    }
}
