{filteredBrands.map((brand) => {
const isSelected = selectedIds.includes(brand.id);
return (
toggleSelect(brand.id)}
style={{ background: isSelected ? "#eff6ff" : "#fff", border: `2px solid ${isSelected ? "#2563eb" : "#e5e7eb"}`, borderRadius: 12, padding: "16px 14px", cursor: isSubscribed ? "pointer" : "default", position: "relative", transition: "all 0.15s", boxShadow: isSelected ? "0 0 0 3px rgba(37,99,235,0.12)" : "none" }}
>
{/* Checkbox badge */}
{brand.name}
ID: {brand.id}