/* APEX 23 (UT) — Side Navigation TreeNav: wrap item text */
.t-TreeNav .a-TreeView-label{
  white-space: normal !important;   /* allow wrapping */
  overflow: visible !important;     /* don't clip */
  text-overflow: clip !important;   /* no ellipsis */
  overflow-wrap: anywhere;          /* break long words */
  line-height: 1.2;
}

/* Let the item row grow vertically to fit multiple lines */
.t-TreeNav .a-TreeView-content{
  height: auto !important;
  align-items: flex-start;
}

/* If your theme forces nowrap on the link itself, override it too */
.t-TreeNav .a-TreeView-content a{
  white-space: normal !important;
}
