/* Shimmer animation */
.skeleton {
  background-color: #e2e2e2;
  background-image: linear-gradient(90deg, #e2e2e2 0px, #f5f5f5 40px, #e2e2e2 80px);
  background-size: 600px;
  background-repeat: no-repeat;
  animation: shimmer 1.3s infinite linear;
  border-radius: 6px;
}

@keyframes shimmer {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 600px;
  }
}

/* Container */
.question-skeleton-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  max-width: 600px;
  margin: auto;
}

/* Card styling */
.question-skeleton-card {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Year calendar icon + year bar */
.skeleton-year-icon {
  width: 100px;
  height: 18px;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* Question line */
.skeleton-question-line {
  width: 90%;
  height: 16px;
  border-radius: 4px;
}