static String? formatForDatabase(DateTime? dateTime) { if (dateTime == null) return null; return dateTime.toUtc().toIso8601String(); }