/* Skeleton Loading Styles */
/* Tab Skeletons */
/* Skeleton Loading Styles */

/* Tab Skeleton */
/* Skeleton Loading Styles */

/* Tab Skeleton */
.collab-tab-section .collab-wrapper .screen-tabs::before{
  background: unset!important;
}
/* Skeleton base */
.tab-skeleton,
.skeleton-box {
  position: relative;
  overflow: hidden;
  background-color: #e0e0e0;
  border-radius: 12px;
}

/* Tab skeleton size */
.tab-skeleton {
  width: 409px;
  height: 469px;
  margin-left: auto;
}

/* Content skeleton size */
.skeleton-box {
  width: 100%;
  height: 800px;
  margin-top: 20px;
}

/* Moving white loading bar */
.loading-bar {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.85),
    transparent
  );
  animation: moveBar 1.5s linear infinite;
  filter: blur(2px);
  opacity: 0.9;
}

/* Smooth continuous movement */
@keyframes moveBar {
  100% {
    left: 150%;
  }
}
