diff --git a/scipost_django/submissions/templates/submissions/_hx_select_referee_email_table_row.html b/scipost_django/submissions/templates/submissions/_hx_select_referee_email_table_row.html
index d34e6224503a9fc8b4db348d83a9b07642f02b90..10004fd3e855a0917f0bc2d9cc73c36abc61fddd 100644
--- a/scipost_django/submissions/templates/submissions/_hx_select_referee_email_table_row.html
+++ b/scipost_django/submissions/templates/submissions/_hx_select_referee_email_table_row.html
@@ -27,5 +27,7 @@
 
   </td>
 
-  <td>{{ profile_email.email }}</td>
+  <td title="{{ profile_email.email }}" 
+      style="max-width:250px;" 
+      class="text-truncate overflow-hidden">{{ profile_email.email }}</td>
 </tr>
diff --git a/scipost_django/submissions/templates/submissions/_hx_select_referee_table_row.html b/scipost_django/submissions/templates/submissions/_hx_select_referee_table_row.html
index 2b4731f2f2055cbfe845e845b24fa2bbe5961f23..e55ec81644fa16d8ca3d3df86f96370da77ac875 100644
--- a/scipost_django/submissions/templates/submissions/_hx_select_referee_table_row.html
+++ b/scipost_django/submissions/templates/submissions/_hx_select_referee_table_row.html
@@ -1,6 +1,6 @@
 <tr>
-  <td>
-    <a href="{{ profile.get_absolute_url }}">{{ profile }}</a>
+  <td style="max-width:200px;" class="text-truncate overflow-hidden">
+    <a title={{ profile }} href="{{ profile.get_absolute_url }}">{{ profile }}</a>
   </td>
   <td>
 
@@ -37,7 +37,7 @@
     </table>
 
   </td>
-  <td>
+  <td style="min-width:330px;">
 
     {% if not profile.accepts_refereeing_requests %}
       <span class="text-danger">This person does not accept refereeing requests</span>