/* Hide PalletPreview page link in AdminJS sidebar (visual only)
   Keeps the page routable at /admin/pages/PalletPreview while removing the
   sidebar link so it doesn't appear in navigation.
*/

/* match links that begin with the page path (with or without query string) */
a[href^="/admin/pages/PalletPreview"] {
  display: none !important;
}

/* also hide any sidebar list item that contains such a link */
/* AdminJS markup varies by version; this more aggressive rule covers common cases */
.navbar a[href^="/admin/pages/PalletPreview"],
.navbar__item a[href^="/admin/pages/PalletPreview"],
.sidebar a[href^="/admin/pages/PalletPreview"] {
  display: none !important;
}
