/* Hide scrollbar for sidebar */
.sidebar .position-sticky {
    height: calc(100vh - 2rem); /* Keep height calculation */
    overflow-y: auto; /* Keep scrollability */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.sidebar .position-sticky::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}