/* Sosyal medya paylaşım butonları */
.social-share-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.share-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: #ffffff;
}

.social-share-facebook:hover {
    background-color: #1877f2;
}

.social-share-twitter:hover {
    background-color: #1da1f2;
}

.social-share-whatsapp:hover {
    background-color: #25d366;
}

.social-share-telegram:hover {
    background-color: #0088cc;
}

.social-share-linkedin:hover {
    background-color: #0077b5;
}

.social-share-copy:hover {
    background-color: #6c757d;
}

/* Mobile için daha küçük butonlar */
@media (max-width: 768px) {
    .social-share-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .share-label {
        font-size: 0.85rem;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .social-share-btn {
        background-color: #2a2a2a;
        color: #e0e0e0;
    }
    
    .share-label {
        color: #999;
    }
}

