/* Social Share Buttons */
.social-share-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.share-label {
    font-weight: 600;
    color: #666;
    font-size: 0.95rem;
}

.social-share-buttons .btn {
    transition: all 0.3s ease;
}

.social-share-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-share-buttons .btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

.social-share-buttons .btn-outline-info:hover {
    background-color: #17a2b8;
    color: white;
}

.social-share-buttons .btn-outline-success:hover {
    background-color: #28a745;
    color: white;
}

.social-share-buttons .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

/* Breadcrumb Styling */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    font-size: 1.2rem;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Reading Time Badge */
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Alert Animations */
.alert {
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Character Counter Styling */
#charCount {
    font-weight: 600;
    transition: color 0.3s ease;
}

#charCount.text-warning {
    color: #ffc107 !important;
}

#charCount.text-danger {
    color: #dc3545 !important;
}