/* Base shimmer effect */
.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; }
}

/* Outer container */
.skeleton-join-card {
  width: 350px;
  max-width: 100%;
  background: #fff;
  padding: 24px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Title */
.skeleton-title {
  height: 24px;
  width: 60%;
  margin: 0 auto;
}

/* Subtitle */
.skeleton-subtitle {
  height: 18px;
  width: 40%;
  margin: 0 auto;
}

/* Box style for cards */
.skeleton-box {
  background: #fff7e6;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Line inside card */
.skeleton-line {
  height: 14px;
  width: 70%;
  margin: 0 auto;
}

/* Button */
.skeleton-button {
  height: 32px;
  width: 120px;
  margin: 0 auto;
  border-radius: 20px;
}
