.social-share-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.social-share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-share-icon svg {
    width: 20px;
    height: 20px;
    fill: #000;
    transition: all 0.3s ease;
}

.social-share-icon:hover {
    background: #000;
    border-color: #000;
}

.social-share-icon:hover svg {
    fill: #fff;
}

/* Platform-specific hover colors */
.social-share-icon.facebook:hover { background: #3b5998; border-color: #3b5998; }
.social-share-icon.instagram:hover { background: #e1306c; border-color: #e1306c; }
.social-share-icon.twitter:hover { background: #000; border-color: #000; }
.social-share-icon.linkedin:hover { background: #0077b5; border-color: #0077b5; }
.social-share-icon.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-share-icon.mail:hover { background: #EA4335; border-color: #EA4335; }
.social-share-icon.copy-link:hover { background: #666; border-color: #666; }