/* Container des boutons de partage */
.social-share-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

/* Style des boutons de partage */
.social-share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.social-share-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.social-share-button i {
    font-size: 16px;
}

/* Adaptation au thème sombre */
[data-theme="dark"] .social-share-button {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
    .social-share-container {
        flex-direction: column;
    }
    
    .social-share-button {
        width: 100%;
        justify-content: center;
    }
}