diff --git a/Resources/Private/Backend/Templates/Index.html b/Resources/Private/Backend/Templates/Index.html
index 5a1b323ba8dfe47975a5d6236e34ca7ed0853989..6db313290c405e57d087d230a834f75e3b2f6be8 100644
--- a/Resources/Private/Backend/Templates/Index.html
+++ b/Resources/Private/Backend/Templates/Index.html
@@ -32,8 +32,14 @@
 					<div class="panel panel-default recordlist">
 						<div class="table-fit">
 							<table data-table="tx_sgjobs_domain_model_job" class="table table-striped table-hover">
+								<thead>
+									<tr>
+										<td colspan="3">
+											<f:render partial="Pagination" arguments="{pagination: pagination, paginator: paginator, actionName: 'index', currentPage: currentPage}"/>
+										</td>
+									</tr>
+								</thead>
 								<tbody>
-									<f:render partial="Pagination" arguments="{pagination: pagination, paginator: paginator, actionName: 'index', currentPage: currentPage}"/>
 									<f:for each="{paginator.paginatedItems}" as="job">
 										<tr data-uid="{job.uid}">
 											<td nowrap="nowrap" class="col-icon">
diff --git a/Resources/Public/StyleSheets/backend.css b/Resources/Public/StyleSheets/backend.css
index cb7b1604a64a12180f8fcd06183518dd7769b172..719b9eede3a6cb0656461ca7c400b1d78226b386 100644
--- a/Resources/Public/StyleSheets/backend.css
+++ b/Resources/Public/StyleSheets/backend.css
@@ -116,3 +116,12 @@ a.accordion-header-toggle.collapsed .fa-caret-up {
 	margin-bottom: 5px;
 	clear: both;
 }
+
+.table > thead > tr,
+.table > thead > tr > td {
+	background-color: #ededed;
+}
+
+.pagination .paginator-input {
+	height: 26px;
+}