Validate if a device UUID is properly formatted.
static bool validateUUID(String uuid) { return uuid.length == 36 && uuid.contains('-'); }