diff --git a/electron/main/index.html b/electron/main/index.html
index e4b2ff5..6d045ab 100644
--- a/electron/main/index.html
+++ b/electron/main/index.html
@@ -57,7 +57,7 @@
-
+
@@ -146,8 +146,10 @@
-
-
+
+
+
+
diff --git a/electron/main/script.js b/electron/main/script.js
index 4294160..e7824ca 100644
--- a/electron/main/script.js
+++ b/electron/main/script.js
@@ -286,7 +286,7 @@ function showStep(stepNumber) {
return;
}
steps.forEach(step => step.style.display = "none");
- document.getElementById("step" + stepNumber).style.display = "block";
+ document.getElementById("step" + stepNumber).style.display = "flex";
stepButtons.forEach(btn => btn.classList.remove("active"));
document.querySelector(`.step-item[data-step="${stepNumber}"]`).classList.add("active");
diff --git a/electron/main/style.css b/electron/main/style.css
index 5b894e7..4040e09 100644
--- a/electron/main/style.css
+++ b/electron/main/style.css
@@ -109,10 +109,12 @@ body {
}
#step2 {
- display: flex;
- justify-content: center;
gap: 30px;
}
+
+.KI-wrapper {
+ margin-top: 40px;
+}
input[type="file"] {
display: none;
@@ -181,12 +183,10 @@ input[type="file"] {
.submit-btn {
display: flex;
- justify-content: center;
align-items: center;
+ justify-content: center;
padding: 10px 20px;
- margin-left: 300px;
- margin-top: 30px;
- margin-bottom: 70px;
+ margin: 130px auto 10px auto;
background-color: #007BFF;
color: white;
border: none;
@@ -300,7 +300,6 @@ input[type="file"] {
margin-top: 70px;
display: flex;
flex-direction: column;
- justify-content: center;
min-height: 400px;
}
@@ -470,6 +469,21 @@ li {
font-size: larger;
}
+#step4 {
+ align-items: center;
+}
+
+#step5 {
+ align-items: flex-start;
+}
+
+.button-group {
+ display: flex;
+ gap: 12px;
+ justify-content: center;
+ margin-top: 10px;
+}
+
.download-btn {
display: flex;
align-items: center;
@@ -485,4 +499,15 @@ li {
border-radius: 8px;
cursor: pointer;
font-size: 14px;
+}
+
+#speakerLocker, #speakerResender{
+ padding: 10px 20px;
+ margin: 20px auto;
+ background-color: #007BFF;
+ color: white;
+ border: none;
+ border-radius: 8px;
+ cursor: pointer;
+ font-size: 14px;
}
\ No newline at end of file