diff --git a/BudgetMasterServer/src/main/resources/static/css/transactionImport.css b/BudgetMasterServer/src/main/resources/static/css/transactionImport.css
index 7056f8b1cfa7a7201595df1b080081812fbc5b16..27648254359c8ed97ae3e268284c4c29680bfae9 100644
--- a/BudgetMasterServer/src/main/resources/static/css/transactionImport.css
+++ b/BudgetMasterServer/src/main/resources/static/css/transactionImport.css
@@ -15,4 +15,8 @@
 
 .transaction-import-row-skipped {
     opacity: 0.5;
+}
+
+#table-transaction-rows td {
+    padding: 5px;
 }
\ No newline at end of file
diff --git a/BudgetMasterServer/src/main/resources/templates/transactions/transactionImport.ftl b/BudgetMasterServer/src/main/resources/templates/transactions/transactionImport.ftl
index 6ebad981048ed8a95f8b06d69434fb44429f238c..0291db3bab878e36e9466726e510afebec507a46 100644
--- a/BudgetMasterServer/src/main/resources/templates/transactions/transactionImport.ftl
+++ b/BudgetMasterServer/src/main/resources/templates/transactions/transactionImport.ftl
@@ -188,7 +188,7 @@
 
 <#macro renderCsvTransactions>
     <div class="container" id="transaction-import-list">
-        <table class="bordered centered">
+        <table class="bordered centered" id="table-transaction-rows">
             <tr>
                 <td class="bold">${locale.getString("transactions.import.status")}</td>
                 <td class="bold">${locale.getString("transaction.new.label.date")}</td>
@@ -211,9 +211,8 @@
             <td><@statusBanner csvTransaction.getStatus()/></td>
             <td>${csvTransaction.getDate()}</td>
             <td>
-                <div class="input-field">
-                    <input id="name-${index}" type="text" name="name" required value="${csvTransaction.getName()}">
-                    <label class="input-label" for="name-${index}">${locale.getString("transaction.new.label.name")}</label>
+                <div class="input-field no-margin-top no-margin-bottom">
+                    <input class="no-margin-bottom" type="text" name="name" required value="${csvTransaction.getName()}">
                 </div>
             </td>
             <td>${csvTransaction.getAmount()}</td>