/* Hide Next.js dev tools toast completely */
.nextjs-toast,
[data-nextjs-toast],
.nextjs-toast * {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide the entire dev tools indicator */
nextjs-portal,
#__nextjs_dev_tools_indicator {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
