Deletes a bookmark by its primary key.
Future<void> deleteBookmark(String id) async { await _client.from('user_bookmarks').delete().eq('id', id); }