
/* Page background */
body {
  background-color: #f4f6fb;
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
}

/* Quiz container */
#tasha-quiz-app {
  background-color: #ffffff;
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Progress bar */
.tsq-progress {
  width: 100%;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  height: 18px;
  margin-bottom: 25px;
}

.tsq-progress-fill {
  height: 100%;
  background-color: #1f3d6d;
  transition: width 0.3s ease;
}

/* Question */
#tasha-quiz-app h3 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  color: #1f3d6d;
  margin-bottom: 28px;
}

/* Options */
.tsq-option {
  display: block;
  padding: 14px 20px;
  margin: 12px 0;
  background-color: #f1f1f1;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.tsq-option:hover {
  background-color: #e0e8f0;
}

.tsq-option input[type="radio"] {
  margin-right: 12px;
}

/* Navigation buttons */
.tsq-nav {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}

.tsq-nav button {
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #d8c58c;
  color: #1f3d6d;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tsq-nav button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.tsq-nav button:hover:enabled {
  background-color: #c0b06e;
}

/* Result section */
.tsq-result {
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.tsq-result h3 {
  font-size: 1.6rem;
  color: #1f3d6d;
  margin-bottom: 20px;
}

.tsq-result p {
  font-size: 1.15rem;
  margin: 12px 0;
}

.tsq-button {
  margin-top: 25px;
  background-color: #d8c58c;
  color: #1f3d6d;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
}

/* Trait table */
.tsq-trait-table {
  margin-top: 30px;
  width: 100%;
  border-collapse: collapse;
}

.tsq-trait-table th, .tsq-trait-table td {
  border: 1px solid #ccc;
  padding: 10px 14px;
  text-align: left;
}

.tsq-trait-table th {
  background-color: #f0f0f0;
  color: #1f3d6d;
}
