.quiz-info-taxonomy {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* Circular Progress */
.quizflow-score-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 25px auto;
}

.quizflow-score-container .circular-chart {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.quizflow-score-container .circle-bg {
  fill: none;
  stroke: #E5E7EB;
  stroke-width: 2.5;
}

.quizflow-score-container .circle {
  fill: none;
  stroke: #10B981;
  stroke-width: 3;
  stroke-linecap: round;

  /* Start state: The circle is empty (offset 100) */
  stroke-dasharray: 100, 100;
  stroke-dashoffset: 100;

  /* This defines HOW it animates */
  transition: stroke-dashoffset 2s ease-in-out;
}

.quizflow-score-container .score-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.quizflow-score-container .percentage {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.quizflow-score-container .points-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress {
  to {
    stroke-dashoffset: 0;
  }
}



/* Quiz Empty State */
.quizflow-empty-state {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid #e1e5eb;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

/* Decorative Circles */
.quizflow-empty-state::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(to bottom right, #4cbce23f, #44f2b500);
  border-radius: 50%;
}

.quizflow-empty-state::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: linear-gradient(to bottom right, #4cbce23f, #44f2b500);
  border-radius: 50%;
}

/* Icon Container */
.quizflow-empty-state__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.quizflow-empty-state__icon svg {
  stroke: #6366f1;
}

/* Title */
.quizflow-empty-state__title {
  color: #1e293b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* Description */
.quizflow-empty-state__description {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Icon Animation */
.quizflow-empty-state__icon svg {
  animation: bounce 2s infinite;
}

/* Hover Effects */
.quizflow-empty-state:hover .quizflow-empty-state__icon {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}