diff --git a/voting.html b/voting.html
index bd99123..399b74b 100644
--- a/voting.html
+++ b/voting.html
@@ -755,8 +755,13 @@
Your RCV selection:
const voteTable = document.createElement("table");
voteTable.classList.add("tableStyle");
const row1 = document.createElement("tr");
- row1.appendChild(spoilButton);
- row1.appendChild(voteButton);
+ const col1 = document.createElement("td");
+ const col2 = document.createElement("td");
+ col2.innerHTML = "  ";
+ col1.appendChild(spoilButton);
+ col2.appendChild(voteButton);
+ row1.appendChild(col1);
+ row1.appendChild(col2);
voteTable.appendChild(row1);
rootElement.appendChild(voteTable);
}