/* Toast overlay pane — clicks pass through to content below */
.com-toast-overlay {
  pointer-events: none;
}

/* ─── Standalone Text Color Overrides ─── */
/* text-success and text-warn need darker shades for text contrast on bg-background */

@layer utilities {
  .text-success {
    color: var(--color-success-600);
  }
  .text-warn {
    color: var(--color-warn-600);
  }
}
