/* Add this CSS to show and hide submenus */
.nav-btn-submenu + ul {
    display: none;
  }
  
  .nav-btn-submenu.show + ul {
    display: block;
  }
  
  #planCuentas a {
    text-decoration: none; /* Quitar subrayado de los enlaces */
    outline: none; /* Quitar línea de contorno de los enlaces */
  }
  
  #planCuentas li {
    list-style-type: none; /* Quitar viñetas de las listas */
  }
  #planCuentas i {
    font-size: 16px;
    color: red;
  }

  /* 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: hand;
  user-select: none; /* Prevent text selection */
}

/* Create the caret/arrow with a unicode, and style it */
.caret::before {
  content: "\1F4C1";
  color: black;
  display: inline-block;
  margin-right: 6px;
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
  content: "\1F4C2";
  margin-right: 6px;
}

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

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

/*-------------------------------------------------------------------------------*/
.context-menu {
  position: absolute;
  display: none;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 0;
}

.context-menu__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.context-menu__option {
  padding: 8px 12px;
  cursor: hand;
}

.context-menu__option:hover {
  background-color: #f0f0f0;
}

#context-menu {
  position: fixed;
}
