.sticky-sidebar {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.accordion-header {
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
    padding-bottom: 10px;
}
