pub fn print_error(message: impl Display)
Prints an error message to stderr with a red X prefix.
use bel7_cli::print_error; print_error("Something went wrong"); // Output: ✗ Something went wrong (red X)