/* Make the UL a flex column so we can reorder items */
.nav.nav-pills.nav-sidebar.flex-column {
    display: flex !important;
    flex-direction: column !important;
}

/* -------------------------------------------
   HIDE "GO TO" SECTION
   ------------------------------------------- */

/* Hide header at index 13 */
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(14) {
    display: none !important;
}

/* Hide items 14, 15, 16 */
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(15),
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(16),
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(17) {
    display: none !important;
}

/* -------------------------------------------
   MOVE "ADMINISTRATION" SECTION TO TOP
   ------------------------------------------- */

/* Move header at index 7 */
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(8) {
    order: -100 !important;
}

/* Move items 8–12 */
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(9),
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(10),
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(11),
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(12),
.nav.nav-pills.nav-sidebar.flex-column > li:nth-child(13) {
    order: -99 !important;
}

