/**
 * Social Share Buttons Styles
 * Datei: assets/css/social-share.css
 */

.reader-tools-share-buttons {
    margin: 40px 0;
    padding: 30px;
    border-top: 3px solid #4b5563;
    background: #f9fafb;
    border-radius: 8px;
}

.reader-tools-share-buttons h4 {
    margin: 0 0 20px 0;
    font-size: 18px;
    color: #1f2937;
    font-weight: 600;
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn svg {
    flex-shrink: 0;
}

.share-twitter {
    background: #1DA1F2;
}

.share-twitter:hover {
    background: #1a8cd8;
}

.share-facebook {
    background: #1877F2;
}

.share-facebook:hover {
    background: #166fe5;
}

.share-linkedin {
    background: #0A66C2;
}

.share-linkedin:hover {
    background: #095196;
}

.share-whatsapp {
    background: #25D366;
}

.share-whatsapp:hover {
    background: #20bd5a;
}

.share-telegram {
    background: #0088cc;
}

.share-telegram:hover {
    background: #0077b3;
}

.share-reddit {
    background: #FF4500;
}

.share-reddit:hover {
    background: #e63e00;
}

.share-email {
    background: #6b7280;
}

.share-email:hover {
    background: #4b5563;
}

.share-x {
    background: #000000;
}

.share-x:hover {
    background: #1a1a1a;
}

.share-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.share-instagram:hover {
    opacity: 0.9;
}

.share-youtube {
    background: #FF0000;
}

.share-youtube:hover {
    background: #cc0000;
}

.share-xing {
    background: #006567;
}

.share-xing:hover {
    background: #005154;
}

.share-pinterest {
    background: #E60023;
}

.share-pinterest:hover {
    background: #cc0020;
}

.share-copy {
    background: #6b7280;
}

.share-copy:hover {
    background: #4b5563;
}

.share-copy.copied {
    background: #10b981;
}

.share-copy.copied span::after {
    content: " ✓";
}

@media (max-width: 768px) {
    .share-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-btn span {
        font-size: 13px;
    }
}

body.dark-mode .reader-tools-share-buttons {
    background: #2d2d2d;
    border-top-color: #4b5563;
}

body.dark-mode .reader-tools-share-buttons h4 {
    color: #f5f5f5;
}