/* ==========================================================================
   ҚАЗАҚ КИІЗ ҮЙІ — СӘУЛЕТТІК ПАРАМЕТРЛІК ДИЗАЙН ЖҮЙЕСІ (CSS DESIGN SYSTEM)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap&subset=cyrillic,cyrillic-ext');

:root {
  /* Түс палитрасы (Color Tokens) */
  --bg-main: #0c1017;
  --bg-surface: #141b24;
  --bg-panel: #1b2432;
  --bg-panel-hover: #222e40;
  --bg-input: #0e141c;
  
  --border-subtle: #29374c;
  --border-active: #d4a359;
  --border-focus: #f59e0b;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #e5b367;

  --accent-gold: #d4a359;
  --accent-gold-hover: #e5b367;
  --accent-ruby: #dc2626;
  --accent-cyan: #38bdf8;
  --accent-emerald: #10b981;

  /* Шрифты */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cinzel', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Радиустар мен көлеңкелер */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);

  --header-height: 70px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ==========================================================================
   ШАПКА (HEADER & TOPBAR)
   ========================================================================== */

.app-header {
  height: var(--header-height);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #2b1f11 0%, #151d27 100%);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.brand-logo img {
  width: 28px;
  height: 28px;
  display: block;
}

.brand-title h1 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.brand-title p {
  font-size: 0.78rem;
  color: var(--text-gold);
  font-weight: 500;
}

.nav-tabs {
  display: flex;
  gap: 6px;
  background: var(--bg-input);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.nav-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.nav-tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-tab-btn.active {
  background: var(--accent-gold);
  color: #0f172a;
  box-shadow: 0 2px 10px rgba(212, 163, 89, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-selector {
  display: flex;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.lang-btn.active {
  background: var(--border-subtle);
  color: var(--accent-gold);
}

/* Фондық музыка батырмасы (Ambient Music Player Button) */
.music-toggle-btn {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  user-select: none;
}

.music-toggle-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-gold);
  background: var(--bg-panel);
}

.music-toggle-btn.playing {
  background: rgba(212, 163, 89, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 163, 89, 0.25);
}

.music-waves {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  width: 10px;
}

.music-waves .wave-bar {
  display: block;
  width: 2px;
  height: 4px;
  background-color: currentColor;
  border-radius: 1px;
  transition: height 0.2s ease;
}

.music-toggle-btn.playing .music-waves .wave-bar:nth-child(1) {
  animation: soundWave 1.1s ease-in-out infinite alternate;
}

.music-toggle-btn.playing .music-waves .wave-bar:nth-child(2) {
  animation: soundWave 0.9s ease-in-out 0.2s infinite alternate;
}

.music-toggle-btn.playing .music-waves .wave-bar:nth-child(3) {
  animation: soundWave 1.2s ease-in-out 0.4s infinite alternate;
}

@keyframes soundWave {
  0% {
    height: 3px;
  }
  50% {
    height: 12px;
  }
  100% {
    height: 5px;
  }
}

/* ==========================================================================
   НЕГІЗГІ ОРТА ЖӘНЕ ЖҰМЫС КЕҢІСТІГІ (MAIN WORKSPACE LAYOUT)
   ========================================================================== */

.app-main {
  display: grid;
  grid-template-columns: 380px 1fr 340px;
  flex: 1;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}

/* UltraWide мониторға арналған кеңейтілген сетка (2560px+) */
@media (min-width: 2000px) {
  .app-main {
    grid-template-columns: 440px 1fr 400px;
  }
}

/* ==========================================================================
   МОБИЛЬДІ ҚҰРЫЛҒЫЛАРҒА АРНАЛҒАН АРХИТЕКТУРА (SMARTPHONE MOBILE OPTIMIZATION)
   ========================================================================== */

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(20, 27, 36, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 100;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  height: 100%;
  transition: color 0.15s ease;
}

.mobile-nav-item.active {
  color: var(--accent-gold);
}

.mobile-floating-control-pill {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 30;
  background: rgba(20, 27, 36, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 700;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Мобильді адаптивтілік (Smartphones <= 768px, OPPO Reno5 Lite) */
@media (max-width: 768px) {
  .app-header {
    height: 58px;
    padding: 0 14px;
  }
  .brand-title h1 {
    font-size: 0.98rem;
  }
  .brand-title p {
    display: none;
  }
  .brand-logo {
    width: 34px;
    height: 34px;
  }
  .nav-tabs {
    display: none; /* Мобильде төменгі навигацияға ауысады */
  }
  #btn-export-svg-top span {
    display: none;
  }
  #btn-export-svg-top {
    padding: 8px 10px;
  }
  .mobile-bottom-nav {
    display: grid;
  }
  .mobile-floating-control-pill {
    display: flex;
  }

  .app-main {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 58px - 64px);
    overflow: hidden;
  }

  .app-sidebar-left {
    position: fixed;
    bottom: 64px;
    left: 0;
    right: 0;
    top: auto;
    max-height: 75vh;
    background: var(--bg-surface);
    border-top: 1px solid var(--accent-gold);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7);
    z-index: 90;
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .app-sidebar-left.mobile-open {
    transform: translateY(0);
  }

  .app-sidebar-right {
    display: none;
  }

  .viewport-container {
    flex: 1;
    height: 100%;
  }

  .yurt-2d-toolbar {
    top: 12px;
    left: 12px;
  }

  .toolbar-info {
    display: none;
  }

  .content-page-view {
    padding: 20px 16px 80px 16px;
    height: calc(100vh - 58px - 64px);
  }

  .bom-tables-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Панельдер */
.sidebar-panel {
  background: var(--bg-surface);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.app-sidebar-right {
  border-right: none;
  border-left: 1px solid var(--border-subtle);
}

.panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-header h2 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Басқару элементтері */
.control-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.control-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.control-badge {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(212, 163, 89, 0.12);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 163, 89, 0.3);
}

.slider-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: var(--bg-input);
  border-radius: var(--radius-full);
  outline: none;
  border: 1px solid var(--border-subtle);
}

.slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 163, 89, 0.6);
  border: 2px solid #ffffff;
  transition: transform 0.1s ease;
}

.slider-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-scale-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.yurt-type-card {
  background: linear-gradient(135deg, #1f2a38 0%, #151d27 100%);
  border: 1px solid var(--border-active);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-top: 4px;
}

.yurt-type-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.yurt-type-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Пресеттер батырмалары */
.preset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.preset-btn {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 8px 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.preset-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  background: var(--bg-panel-hover);
}

.preset-btn.active {
  border-color: var(--accent-gold);
  background: rgba(212, 163, 89, 0.15);
  color: var(--accent-gold);
  font-weight: 700;
}

/* Аккордеон / Қосымша реттеулер */
.accordion-toggle {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-content {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.accordion-content.open {
  display: flex;
}

/* ==========================================================================
   ОРТАЛЫҚ КӨРІНІС АЙМАҒЫ (VIEWPORT CANVAS WORKSPACE)
   ========================================================================== */

.viewport-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.viewport-view {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.viewport-view.active {
  display: block;
}

/* 2D Векторлық контейнер */
.yurt-2d-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: grab;
  user-select: none;
}

.yurt-2d-wrapper.theme-blueprint {
  background: radial-gradient(circle at center, #0f1c30 0%, #080d16 100%);
}

.yurt-2d-wrapper.theme-cad {
  background: #f8fafc;
}

.yurt-2d-wrapper.theme-cad .cad-grid {
  stroke: #cbd5e1;
}

.yurt-2d-wrapper.theme-parchment {
  background: #f5eedc;
}

.yurt-2d-toolbar {
  position: absolute;
  top: 16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.toolbar-group {
  display: flex;
  background: rgba(20, 27, 36, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.tool-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tool-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.toolbar-info {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-muted);
  background: rgba(20, 27, 36, 0.7);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.yurt-svg-canvas {
  width: 100%;
  height: 100%;
}

.hotspot-pin {
  cursor: pointer;
}

.hotspot-pin .hotspot-circle {
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.2s ease, opacity 0.2s ease;
}

.hotspot-pin:hover .hotspot-circle {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(217, 119, 6, 0.6));
  opacity: 1;
}

.hotspot-pin .hotspot-tooltip {
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.hotspot-pin:hover .hotspot-tooltip {
  opacity: 1;
}

/* 3D Контейнер */
#canvas-3d-container {
  width: 100%;
  height: 100%;
  outline: none;
}

.viewport-hud {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.hud-pill {
  pointer-events: auto;
  background: rgba(20, 27, 36, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
}

/* ==========================================================================
   ОҢ ЖАҚ СТАТИСТИКА ЖӘНЕ БӨЛШЕКТЕР ПАНЕЛІ (STATISTICS & INSPECTOR)
   ========================================================================== */

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
}

.stat-card.highlight {
  border-color: rgba(212, 163, 89, 0.5);
  background: linear-gradient(135deg, rgba(212, 163, 89, 0.1) 0%, var(--bg-panel) 100%);
}

.stat-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-unit {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 2px;
}

/* Бөлшектер инспекторы карточкасы */
.inspector-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.inspector-header {
  padding: 12px 16px;
  background: var(--bg-input);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inspector-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.inspector-body {
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inspector-proverb {
  font-style: italic;
  color: var(--text-gold);
  border-left: 2px solid var(--accent-gold);
  padding-left: 10px;
  margin-top: 6px;
}

/* Батырмалар */
.btn-primary {
  background: var(--accent-gold);
  color: #0f172a;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s ease;
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  box-shadow: 0 4px 14px rgba(212, 163, 89, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s ease;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   СПЕЦИФИКАЦИЯ ЖӘНЕ КІТАП КӨРІНІСІ (BOM & ENCYCLOPEDIA VIEWS)
   ========================================================================== */

.content-page-view {
  display: none;
  padding: 32px 40px;
  max-width: 1400px;
  margin: 0 auto;
  overflow-y: auto;
  height: calc(100vh - var(--header-height));
}

.content-page-view.active {
  display: block;
}

.page-hero {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.page-hero h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--accent-gold);
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 4px;
}

.bom-tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .bom-tables-grid {
    grid-template-columns: 1fr;
  }
}

.data-table-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.data-table-header {
  background: var(--bg-panel);
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.data-table th, .data-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.data-table th {
  background: var(--bg-input);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.data-table td.numeric {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-gold);
}

/* Энциклопедия бөлшектер карточкалары */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.glossary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.glossary-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
}

.glossary-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   БАСЫП ШЫҒАРУ СТИЛЬДЕРІ (PRINT & PDF STYLESHEET)
   ========================================================================== */

@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  .app-header, .app-sidebar-left, .app-sidebar-right, .yurt-2d-toolbar, .viewport-hud {
    display: none !important;
  }
  .app-main {
    display: block !important;
    height: auto !important;
  }
  .viewport-container {
    height: 600px !important;
    page-break-after: always;
  }
  .yurt-2d-wrapper {
    background: #ffffff !important;
  }
  .content-page-view {
    display: block !important;
    height: auto !important;
    padding: 0 !important;
  }
}
