pub fn format_percent_fixed(value: f64, decimals: usize) -> String
Format a percentage with fixed decimal places.
use batuta_common::fmt::format_percent_fixed; assert_eq!(format_percent_fixed(45.333, 2), "45.33%");