/* Social Sharing Styles */
.social-sharing-container {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    background: var(--bs-light);
    padding: 1rem;
    margin: 1rem 0;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-buttons .btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

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

.social-buttons .btn i {
    font-size: 16px;
}

/* Specific social media colors */
.social-buttons .btn.twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.social-buttons .btn.linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
    color: white;
}

.social-buttons .btn.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-buttons .btn.reddit:hover {
    background-color: #ff4500;
    border-color: #ff4500;
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-sharing-container .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-buttons {
        justify-content: center;
    }
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.share-toast {
    min-width: 300px;
    background: var(--bs-dark);
    color: white;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Share image canvas styling */
.share-canvas {
    display: none;
}