/* Skeleton 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;
  }
}

/* Tab bar container */
.skeleton-tab-bar {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  background: #fafafa;
  border-bottom: 1px solid #ddd;
  overflow-x: auto;
}

/* Each tab placeholder */
.skeleton-tab {
  width: 100px;
  height: 32px;
  border-radius: 6px;
}

/* Active tab mimic (slightly different width or shade if desired) */
.skeleton-tab.active {
  width: 80px;
}