/* Remove default bullets */
ul, #myUL {
  list-style-type: none;
}
  
/* Remove margins and padding from the parent ul */
#myUL {
  margin: 0;
  padding: 0;
}

/* Style the caret/arrow */
.caret {
  cursor: pointer; 
  user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.caret::before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  color: var(--active-bg-color);
  display: inline-block;
  margin-right: 6px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  transform: rotate(270deg); 
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
  transform: rotate(0deg); 
  padding-bottom: .75rem;
}

/* Hide the nested list */
.nested {
  display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
  display: block;
}

.scrollable-menu {
  max-height: 400px;
  overflow-y: scroll;
}

.list-group-flush .list-group-item:first-child {
  border-top-width: 1px;
}

.card::-webkit-scrollbar {
  display: none;
}