/* Media Share Utility Styles */
.share-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.telegram {
    background-color: #0088cc;
}

.share-btn.copy {
    background-color: #6c757d;
    cursor: pointer;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .share-buttons-container {
        justify-content: center;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}