/* Hide all top-level menu items first */
.cms-toolbar-left ul.cms-toolbar-item-navigation > li {
  display: none !important;
}

/* Show the Menu Editor item (Quick Edit) */
.cms-toolbar-left ul.cms-toolbar-item-navigation > li:has(ul li a[href="/menu/quick-editor/"]),
.cms-toolbar-left ul.cms-toolbar-item-navigation > li:has(ul li a[href="/peel/toggle/"]),
/* .cms-toolbar-left ul.cms-toolbar-item-navigation > li:has(ul li a[href="/financialservice/create-financialservice/"]){ */
.cms-toolbar-left ul.cms-toolbar-item-navigation > li:has(ul li a[href="/financialservice/financialservice-list/"]){
  display: block !important;
}

/* Show the first top-level menu (which contains Logout) */
.cms-toolbar-left ul.cms-toolbar-item-navigation > li:first-child {
  display: block !important;
}

/* Hide all items inside the first dropdown except Logout */
.cms-toolbar-left ul.cms-toolbar-item-navigation > li:first-child ul > li {
  display: none !important;
}

.cms-toolbar-left ul.cms-toolbar-item-navigation > li:first-child ul li.cms-toolbar-item-navigation-active {
  display: block !important;
}

.cms-toolbar-item .cms-toolbar-item-buttons a[href="/admin/cms/placeholder/cms_wizard/create/"] {
  display: none !important;
}

/* Hide the Create button specifically */
.cms-toolbar-item-buttons a[href*="cms_wizard/create/"] {
  display: none !important;
}

/* Or hide by the button text */
.cms-toolbar-item-buttons a.cms-btn[data-rel="modal"]:contains("Create") {
  display: none !important;
}

/* Or hide the entire container div for the Create button */
.cms-toolbar-item:has(a[href*="cms_wizard/create/"]) {
  display: none !important;
}

