diff --git a/index.html b/index.html
index aa4ccb5..bb99aa4 100644
--- a/index.html
+++ b/index.html
@@ -2198,6 +2198,7 @@
const link = document.createElement("a");
const url = URL.createObjectURL(blob);
link.setAttribute("href", url);
+ link.className = "btn btn-primary btn-sm";
link.textContent = `Download ${fileName}`
if (link.download !== undefined) {
link.setAttribute("download", fileName);