/* 
 * Simple Sticky Sidebar CSS
 * Makes the sidebar stick to viewport when scrolled down
 */

/* Base container for the sticky sidebar */
.sticky-sidebar {
  position: relative;
  min-height: 2px;
}

/* Simplified Sticky Sidebar */

/* Only apply sticky positioning on desktop */
@media (min-width: 992px) {
    .sticky-sidebar {
        position: -webkit-sticky !important; /* For Safari */
        position: sticky !important;
        top: calc(var(--navbar-height) + 20px) !important; /* Offset from top plus navbar height */
        /* Remove overflow and height constraints */
    }
}