.list-item .list-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
}

.category-toggle-btn {
  width: 20px;
  height: 20px;
  border: 1.5px solid #888;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-icon {
  position: relative;
  width: 10px;
  height: 2px;
  background-color: #888;
}

.toggle-icon::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #888;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.list-item.is-open > .list-item-inner .toggle-icon::before {
  transform: rotate(0deg);
}

.list-item.is-open > .list-item-inner .category-toggle-btn {
  border-color: #333;
}

ul.terms-list {
  margin-right: 12px !important;
  list-style: none;
}