/* Custom scrollbar styles for webkit browsers */
.article-content::-webkit-scrollbar {
    width: 8px;
}

.article-content::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}

.article-content::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 4px;
}

.article-content::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Code block scrollbar styles */
.article-content pre::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.article-content pre::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
}

.article-content pre::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 4px;
}

.article-content pre::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

