.custom-sidebar .category-list {
  list-style: none;
  margin-left: 0px;
}
.custom-sidebar .category-list ul {
  list-style: none;
  margin-left: 0px;
}
.custom-sidebar .category-list ul ul {
  max-height: 0; /* Subcategorias inicialmente ocultas */
  margin-left: 16px;
  overflow: hidden;
  opacity: 0;
}

.custom-sidebar .category-item {
  padding: 5px 0px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.custom-sidebar .category-item.active > ul {
  margin-left: 16px;
  width: 100%;
  max-height: 500px;
  min-height: -webkit-fit-content;
  opacity: 1;
  transition: opacity 0.3s linear;
}
.content-links-item {
  display: flex;
  width: 100%;
}
.custom-sidebar .arrow {
  cursor: pointer;
  margin-right: 5px;
  font-size: 1em;
  color: #333;
  width: 100%;
  display: block;
  text-align: right;
}

.custom-sidebar .category-link {
  /* font-weight: bold; */
  color: #333;
  width: 100%;
  text-decoration: none;
  transition: all 0.2s ease-in 0.05s;
}
