/* Скрываем реальную обёртку контента, пока скелетон активен */
body.skeleton-loading #page-wrap {
  opacity: 0;
}

/* Сам скелетонный экран */
#skeleton-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto; /* на случай длинных страниц */
}

/* Контейнер сетки скелетона */
.skeleton-page {
  width: 100%;
  max-width: 1168px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Базовый блок скелетона */
.skeleton-box {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite ease-in-out;
  border-radius: 4px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Шапка */
.skeleton-header {
  height: 60px;
  margin-bottom: 20px;
  width: 100%;
}

/* Меню */
.skeleton-menu {
  height: 40px;
  margin-bottom: 20px;
  width: 70%;
}

/* Основной контент + сайдбар */
.skeleton-main {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.skeleton-content {
  flex: 1;
}
.skeleton-content .skeleton-line {
  height: 20px;
  margin-bottom: 12px;
}
.skeleton-line.short { width: 60%; }
.skeleton-line.full { width: 100%; }

/* Сайдбар */
.skeleton-sidebar {
  width: 300px;
}
.skeleton-sidebar .skeleton-box {
  height: 200px;
  margin-bottom: 20px;
}

/* Подвал */
.skeleton-footer {
  height: 80px;
  width: 100%;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .skeleton-main {
    flex-direction: column;
  }
  .skeleton-sidebar {
    width: 100%;
  }
}