@override Element? querySelector(String selectors) { final all = querySelectorAll(selectors); if (all.isEmpty) return null; return all.first; }