/* style.css */
body {
  font-family: Arial, sans-serif;
  background: #f8fafc;
  padding: 2rem;
}

.container {
  background: white;
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
}

textarea {
  max-width: 575px;
  width: 100%;
  height: 400px;
  margin-top: 10px 2em;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
}

.buttons {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.buttons-extra {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-around;
}

button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #1e40af;
}

#downloadBtn,
#clearBtn,
#backBtn {
  margin-top: 2em;
}

#status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

/* Progress Bar */
#progress-container {
  width: 100%;
  height: 12px;
  background-color: #e5e7eb; /* light gray */
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0;
}

#progress-bar {
  width: 0%;
  height: 100%;
  background-color: #2563eb; /* blue */
  transition: width 0.4s ease;
}

/* Landing Page - Questions */

ol {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 1rem;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  margin-top: 5px;
}

input:focus {
  outline: none;
  border-color: #2563eb;
}

.start-btn {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.subtitle {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
