/* Base Skeleton Style */
.skeleton {
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, #e2e5e7 0px, #f8f8f8 40px, #e2e5e7 80px);
  background-size: 600px;
  background-repeat: no-repeat;
  animation: shine 1.2s linear infinite;
  border-radius: 4px;
}

/* Animation */
@keyframes shine {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 600px;
  }
}

/* Skeleton container for FAQ item */
.skeleton-faq-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 16px;
  width: 100%;
}

/* Top part: Question + Icon */
.skeleton-faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Placeholder for icon (e.g., + or - sign) */
.skeleton-icon {
  height: 20px;
  width: 20px;
  border-radius: 4px;
}

/* Placeholder for question text */
.skeleton-question {
  height: 16px;
  width: 80%;
  border-radius: 6px;
}

/* Placeholder for answer (when expanded) */
.skeleton-answer-line {
  height: 14px;
  width: 100%;
  margin: 6px 0;
  border-radius: 4px;
}

.skeleton-answer-line.short {
  width: 70%;
}
