.title-filters{  
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.outer-scroll-wrap {
  max-height: 600px; /* Adjust as needed */
  overflow-y: auto;
  padding-right: 5px;
}
.filter-widget {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  width: 100%;
  margin-bottom: 20px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  margin-bottom: 6px;
}

.filter-toggle {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* Scroll container */
.scroll-container {
  border: 1px solid #eee;
  border-radius: 4px 4px 0px 0px;
  border-bottom: none;
  padding: 5px;
  background-color: #fefefe;
  max-height: none;
  overflow-y: hidden;
  transition: max-height 0.3s ease;
}

/* When scrollable (show all) */
.scroll-container.scrollable {
  max-height: 300px;
  overflow-y: auto;
}

/* List items */
.filter-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-options li {
  padding: 6px 4px;
  border-bottom: 1px solid #f3f3f3;
  display: none;
}

.filter-options li.visible {
  display: block;
}

.filter-options input[type="checkbox"] {
  margin-right: 6px;
}

.show-more {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  border:1px solid #eee;
  border-top: none;  
  border-radius: 0px 0px 4px 4px;
  background-color: #F9FAFB
}

.show-more a {
  font-size: 13px;
  color: #0073e6;
  text-decoration: none;
}

.show-more a:hover {
  text-decoration: none;
}