/* Skeleton Animation */
@keyframes skeleton-loading {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Base Skeleton Style */
.skeleton {
  background-color: #eee;
  background-image: linear-gradient(
    90deg,
    #eee 0px,
    #f5f5f5 40px,
    #eee 80px
  );
  background-size: 200px 100%;
  background-repeat: no-repeat;
  display: inline-block;
  line-height: 1;
  border-radius: 4px;
  animation: skeleton-loading 1.2s infinite ease-in-out;
}

/* Utility Classes */
.skeleton-card {
  width: 160px;
  height: 120px;
  border-radius: 8px;
  margin: 10px;
}

.skeleton-heading {
  width: 250px;
  height: 28px;
  margin: 10px auto;
}

.skeleton-subtext {
  width: 180px;
  height: 16px;
  margin: 6px auto;
}

.skeleton-btn {
  width: 120px;
  height: 36px;
  border-radius: 20px;
  margin: 10px auto;
}

.skeleton-list {
  width: 100%;
  height: 20px;
  margin: 10px 0;
  border-radius: 5px;
}

/* Optional Container Grid Layout */
.skeleton-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* Responsive Wrapper */
.skeleton-section {
  padding: 20px;
  background-color: #fff;
}
