diff --git a/frontend/src/components/BulkToolbar.jsx b/frontend/src/components/BulkToolbar.jsx
index 97fa140..53c4be7 100644
--- a/frontend/src/components/BulkToolbar.jsx
+++ b/frontend/src/components/BulkToolbar.jsx
@@ -1,5 +1,5 @@
import { useState } from 'react';
-import { MailOpen, Mail, Star, Archive, Trash2 } from 'lucide-react';
+import { MailOpen, Mail, Star, Archive, Trash2, X } from 'lucide-react';
import { BulkApi } from '../api/client.js';
import {
Button, useToast,
@@ -49,25 +49,54 @@ export default function BulkToolbar({ selectedIds, onDone, onClear }) {
};
return (
-
-
{count} selected
-
-
-
-
-
-
-
+
+ {/* Selection count — primary emphasis so it reads first. */}
+
+
+ {count}
+
+
+ selected
+
+ {/* Obvious clear-selection affordance, kept next to the count. */}
+
+
+
+
+
+
+
+
+
+
+
+