/**
 * @file
 * CSS to hide Management menu for non-admin users.
 */

/* Hide Management menu for non-admin users */
/* Only hide the Management menu item itself, not its content */
.main-menu__item.management,
li.main-menu__item.management {
  display: none;
  visibility: hidden;
}

/* Hide private messages notification item */
.block-notifications__item--messages,
.block-notifications__item.block-notifications__item--messages {
  display: none;
  visibility: hidden;
}
