/*
 * Toast — let the toast body wrap to its natural width rather than
 * defaulting to Bootstrap's 350px cap; matches how notifications read
 * across the builder and records list.
 */

.toast {
  max-width: none;
  width: auto;
}

.toast .toast-body {
  white-space: nowrap;
}
