/* BOOTSTRAP */

/* QUIZ SECTION */

/* === EupassQ Scoped Bootstrap-like Styling === */

/* */

.text-start-quiz
{
  text-decoration: underline;
	color: var(--color-links);
}

.text-high-start
{
	color: var(--color-links);
	text-decoration: none;
}

.custom-border-bottom
{
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--color-accent);
}

/* spinning */
#quiz-spinner {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.quiz-spinner-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.quiz-spinner-box {
  text-align: center;
  max-width: 400px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.quiz-spinner-loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #0073aa; /* change color if needed */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

.quiz-spinner-message {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
