/**
 * Staging environment error suppression
 *
 * Hide FileStorage mkdir() warnings from Docker volume mount interactions.
 * These errors do not impact functionality and are cosmetic only.
 *
 * NOTE: This CSS approach has limitations because text content cannot be targeted
 * with pure CSS selectors. The FileStorage warnings remain in the HTML but are
 * hidden from view. This is a cosmetic suppression only.
 *
 * Better solution: Modify Drupal\Component\PhpStorage\FileStorage to suppress
 * warnings at the PHP level (core patch), or configure PHP error handling to
 * exclude this specific error type.
 */

/* Hide error details elements (cosmetic suppression only - markup still in HTML) */
details.error-with-backtrace {
  display: none;
}
