Formats a date in a short format (e.g., "Apr 10, 2025").
static String formatShort(DateTime date) { return DateFormat.yMMMd().format(date); }