/* Category Page - Fixed Sidebar Styling */
.category-sidebar-scrollable {
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f6f6f1;
}

/* For Webkit browsers (Chrome, Safari, Edge) */
.category-sidebar-scrollable::-webkit-scrollbar {
  width: 6px;
}

.category-sidebar-scrollable::-webkit-scrollbar-track {
  background: #f6f6f1;
}

.category-sidebar-scrollable::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.category-sidebar-scrollable::-webkit-scrollbar-thumb:hover {
  background-color: #9ca3af;
}

/* Smooth scrolling for related articles */
.category-sidebar-scrollable {
  scroll-behavior: smooth;
}
