body {
  background-color: #121212;
  color: #ffffff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
  text-align: center;
  width: 350px;
}

h2 {
  color: #ffffff;
  margin-bottom: 15px;
}

input[type="text"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #444;
  background-color: #2c2c2c;
  color: #ffffff;
  border-radius: 5px;
}

select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background-color: #2c2c2c;
  color: #ffffff;
  border: 1px solid #444;
  border-radius: 5px;
  cursor: pointer;
}

/* Buttons */
button {
  width: 100%;
  padding: 10px;
  background-color: #ff5100;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #b32400;
}

.progress-container {
  width: 100%;
  background-color: #333;
  border-radius: 5px;
  margin: 15px 0;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 10px;
  background-color: #199400;
  transition: width 0.3s ease-in-out;
}

.status {
  font-size: 14px;
  color: #bbbbbb;
}

.download-link {
  margin-top: 15px;
  display: none;
}

.download-link a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

.download-link a:hover {
  text-decoration: underline;
}
