body {
  background: #f4f6f9;
  font-family: Arial, sans-serif;
}

.container {
  width: 420px;
  margin: 80px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

h1 {
  color: #51358C;
}

.subtitle {
  color: #666;
  margin-bottom: 20px;
}

button {
  background: #51358C;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #51358C;
}

#status {
  margin-top: 15px;
  font-size: 14px;
}

/* Progress Bar */
#progressContainer {
  width: 100%;
  background: #e5e7eb;
  border-radius: 6px;
  margin-top: 15px;
  overflow: hidden;
}

#progressBar {
  width: 0%;
  height: 22px;
  background: #e39b03;
  color: white;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
}

/* Botão download */
#resultado a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;
  background: #16a34a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

#resultado a:hover {
  background: #15803d;
}
