.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-toggle {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.category-toggle[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.category-widget li .category-toggle[aria-expanded="true"] {
  margin-bottom: 0;
}

.category-widget
  li
  .category-toggle[aria-expanded="true"]
  + .collapse
  .nav-style-one {
  margin-top: 10px;
}
.nav-style-one > li {
  margin-bottom: 10px;
}
.category-item + .collapse.show {
  margin-top: 10px;
}
li:has(> .category-item > .category-toggle[aria-expanded="true"]) {
  margin-bottom: 0;
}
