/* Animation */
@keyframes shine {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 300px;
  }
}

/* Base skeleton style */
.skeleton {
  background: linear-gradient(90deg, #e2e5e7 0px, #f8f8f8 40px, #e2e5e7 80px);
  background-size: 600px;
  animation: shine 1.2s linear infinite;
  border-radius: 6px;
}

/* Quiz list item */
.skeleton-quiz-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid #ddd;
}

/* Left side - Title & date */
.skeleton-quiz-left {
  flex: 1;
}

.skeleton-quiz-title {
  width: 60%;
  height: 20px;
  margin-bottom: 10px;
}

.skeleton-quiz-date {
  width: 30%;
  height: 14px;
}

/* Right side - Button */
.skeleton-quiz-btn {
  width: 100px;
  height: 32px;
  border-radius: 20px;
}