/* Base shimmer effect */
.skeleton {
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, #e2e5e7 0px, #f8f8f8 40px, #e2e5e7 80px);
  background-size: 600px;
  animation: shine 1.2s linear infinite;
  border-radius: 4px;
}
@keyframes shine {
  0% { background-position: -100px; }
  100% { background-position: 600px; }
}

/* Container */
.skeleton-geo-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.skeleton-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.skeleton-title {
  height: 28px;
  width: 150px;
}
.download-btn {
  height: 36px;
  width: 120px;
  border-radius: 18px;
}

/* Year block */
.skeleton-year-block {
  margin-bottom: 32px;
}
.skeleton-year-label {
  height: 24px;
  width: 80px;
  margin: 16px 0;
}

/* Question list */
.skeleton-question-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-question {
  height: 20px;
  flex: 1;
}
.skeleton-tag {
  height: 18px;
  width: 50px;
  border-radius: 9px;
  margin-top: 10px;
}