/* Skeleton base */
.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;
  }
}

/* Container */
.mock-test-skeleton {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Header */
.skeleton-header {
  height: 32px;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Grid layout */
.skeleton-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Each card */
.skeleton-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #f9f9f9;
  padding: 8px;
  border-radius: 10px;
}

/* Logo circle */
.skeleton-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

/* Text bar */
.skeleton-text {
  width: 80%;
  height: 12px;
  border-radius: 6px;
}
