/* Social Sharing Styles */

.tlp-share-wrapper {
    padding: 20px;
    text-align: center;
}

.tlp-share-label {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

.tlp-share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.tlp-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.tlp-share-btn svg {
    flex-shrink: 0;
}

.tlp-share-twitter {
    background: #000;
    color: #fff;
}

.tlp-share-twitter:hover {
    background: #333;
    color: #fff;
}

.tlp-share-facebook {
    background: #1877f2;
    color: #fff;
}

.tlp-share-facebook:hover {
    background: #0d65d9;
    color: #fff;
}

.tlp-share-email {
    background: #ea4335;
    color: #fff;
}

.tlp-share-email:hover {
    background: #d33426;
    color: #fff;
}

.tlp-share-copy {
    background: #6b7280;
    color: #fff;
}

.tlp-share-copy:hover {
    background: #4b5563;
}

.tlp-share-copy.copied {
    background: #10b981;
}

.tlp-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Inline share buttons (smaller) */
.tlp-share-inline .tlp-share-btn {
    padding: 8px 14px;
    font-size: 13px;
}

/* Share counts */
.tlp-share-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    font-size: 12px;
    margin-left: 6px;
}

@media (max-width: 480px) {
    .tlp-share-buttons {
        flex-direction: column;
    }

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