/* Base shimmer */
.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.2s infinite linear;
  border-radius: 6px;
}

@keyframes shimmer {
  0% { background-position: -100px; }
  100% { background-position: 600px; }
}

/* Main wrapper */
.skeleton-job-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  max-width: 960px;
  margin: auto;
}

/* Title */
.skeleton-title-line {
  height: 22px;
  width: 70%;
  margin-bottom: 20px;
}

/* Toolbar (date, mock test, etc.) */
.skeleton-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.skeleton-badge {
  width: 120px;
  height: 26px;
  border-radius: 12px;
}

/* Share section */
.skeleton-share {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.skeleton-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* Table skeleton rows */
.skeleton-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.skeleton-table-row {
  width: 100%;
  height: 32px;
  border-radius: 8px;
}

/* Subheading */
.skeleton-subheading {
  width: 60%;
  height: 20px;
  margin: 24px 0 16px 0;
}

/* Content lines */
.skeleton-line {
  height: 14px;
  width: 90%;
  margin-bottom: 10px;
}
.skeleton-line.short {
  width: 60%;
}
