body {
  background-color: #f8f9fa;
  font-family: 'Arial', sans-serif;
}

h1 {
  color: #6c63ff;
}

#quiz-container {
  background: #ffffff;
  border-radius: 10px;
}

.question {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
}

#submit-btn {
  background-color: #28a745;
  border-color: #28a745;
}

#submit-btn:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.card {
  border: none;
}

.progress-bar {
  background-color: #6c63ff;
}

#progress-bar-container {
  height: 20px;
  z-index: 10;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Actionable Steps Styling */
.action-steps {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  background-color: #f9f9f9;
  margin-top: 20px;
}

.action-steps ul {
  padding-left: 20px;
  list-style-type: none; /* Remove dots */
}

.action-steps li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.action-steps i {
  color: #6c63ff;
  margin-right: 10px;
}

/* Vibrational Frequency Score */
#frequency-score {
  color: green;
  font-weight: bold;
}

/* Green Checkmark */
.question .checkmark {
  color: green;
  margin-left: 10px;
  visibility: hidden;
}

.question.answered .checkmark {
  visibility: visible;
}

/* Take Test Again Button */
#retry-btn {
  background-color: orange;
  border: none;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

#retry-btn:hover {
  background-color: darkorange;
}
