/* Inline Share Icons */
.share-buttons-inline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.share-label {
    font-weight: 700;
    margin-right: 15px;
    font-size: 14px;
    color: #333;
}

.share-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    /* Rounded square */
    color: white !important;
    margin-right: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.share-icon-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Brand Colors */
.share-icon-btn.facebook {
    background-color: #3b5998;
}

.share-icon-btn.twitter {
    background-color: #1da1f2;
}

.share-icon-btn.whatsapp {
    background-color: #25d366;
}

.share-icon-btn.instagram {
    background-color: #e1306c;
    /* Instagram Gradient fallback */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-icon-btn.copy-link {
    background-color: #6c757d;
}

.share-icon-btn.copy-link.copied {
    background-color: #28a745;
}