/* ================================
   PART 2: REPORT CONTAINER OVERRIDES
   Critical: Override Astra/Elementor
   ================================ */

/* Remove Astra's container width limits */
body.page .site-content > .ast-container,
body.single .site-content > .ast-container,
.ast-container > .ast-row,
.site-content > .ast-container {
  max-width: none !important;
  width: 100% !important;
}

/* Report wrapper - full width */
.antah-report-comprehensive,
.antah-report-free,
body .antah-report-comprehensive,
body .antah-report-free {
  max-width: none !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  background: #F1F5F9 !important; /* Cool BG */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif !important;
}

/* Individual report pages */
.report-page {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto 40px !important;
  padding: 60px 80px !important;
  background: #FFFFFF !important; /* Card BG */
  border: 1px solid #E5E7EB !important; /* Divider Gray */
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  box-sizing: border-box !important;
}

/* Override Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: none !important;
}

/* ============================================
   RESPONSIVE – REPORT CONTAINERS & PAGES
   ============================================ */

/* ---------- TABLET (768px–1024px) ---------- */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Outer report wrapper */
  .antah-report-comprehensive,
  .antah-report-free,
  body .antah-report-comprehensive,
  body .antah-report-free {
    padding: 24px !important;   /* Slightly more breathing room */
  }

  /* Individual report pages – softer padding on tablet */
  .report-page {
    max-width: 980px !important;
    padding: 40px 48px !important;
    margin: 0 auto 32px !important;
    border-radius: 12px !important;
  }
}

/* ---------- MOBILE (≤ 767px) ---------- */
@media (max-width: 767px) {

  /* Outer report wrapper */
  .antah-report-comprehensive,
  .antah-report-free,
  body .antah-report-comprehensive,
  body .antah-report-free {
    padding: 16px !important;
  }

  /* Report card – full-width but soft edges */
  .report-page {
    max-width: 100% !important;
    margin: 0 auto 24px !important;
    padding: 24px 18px !important;  /* Remove horizontal scroll risk */
    border-radius: 10px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05) !important;
  }
}

/* ---------- EXTRA SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {

  .antah-report-comprehensive,
  .antah-report-free,
  body .antah-report-comprehensive,
  body .antah-report-free {
    padding: 12px !important;
  }

  .report-page {
    padding: 20px 14px !important;
    margin-bottom: 20px !important;
    border-radius: 8px !important;
  }
}

/* ================================
   PART 3: COVER PAGE (First Page)
   ================================ */

.page-cover {
  text-align: center !important;
  background: linear-gradient(135deg, #1B254B 0%, #26366B 100%) !important; /* Deep Focus Blue */
  color: #FFFFFF !important;
  position: relative !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(38, 54, 107, 0.2) !important;
}

.free-version-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #FFD700; /* Accent */
  color: #26366B; /* Primary */
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  z-index: 10;
  border: 2px solid #1B254B;
}

.paid-version-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #FFD700; /* Deep Navy */
  color: #26366B;      /* Gold Text */
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  z-index: 10;
  border: 2px solid #FFC94D; /* Muted Premium Gold */
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.cover-header {
  margin-bottom: 60px;
}

.cover-title {
  font-size: 52px !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
  color: #FFD700 !important; /* Accent */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.cover-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.9) !important;
}

.cover-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0;
}

.cover-user-info {
  margin-bottom: 50px;
}

.cover-user-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
  color: white !important;
}

.cover-date,
.cover-context {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 5px 0;
}

.cover-scores-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.cover-score-main {
  flex: 0 0 auto;
}

.score-circle svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* SVG Text */
.score-circle text[fill="#26366B"] {
  fill: #FFFFFF !important; /* Make main score white on dark BG */
}
.score-circle text[fill="#666"] {
  fill: rgba(255, 255, 255, 0.8) !important; /* Make subtitle white on dark BG */
}
/* SVG Stroke */
.score-circle circle[stroke="#f0f0f0"] {
  stroke: rgba(255, 255, 255, 0.2) !important; /* Make track semi-transparent */
}


.cover-score-composites {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.composite-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.composite-label {
  font-weight: 600;
  color: white;
}

.composite-value {
  font-weight: 800;
  color: #FFD700; /* Accent */
  font-size: 18px;
}

.cover-pathway {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 30px;
  /* background set by PHP */
  /* border-color set by PHP */
  border-width: 2px;
  border-style: solid;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.cover-pathway h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  /* color set by PHP */
}

.cover-pathway p {
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  color: #FFFFFF !important;
}

.cover-researcher {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.cover-researcher p {
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 0 0 0;
  color: rgba(255, 255, 255, 0.8) !important;
}

.cover-researcher p:first-child {
  font-weight: 700;
  color: white !important;
}

.cover-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-top: 40px;
  font-style: italic;
}

/* Mini disclaimer for clean cover page */
.cover-mini-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 30px;
  font-style: italic;
  text-align: center;
}

/* ============================================
   RESPONSIVE – COVER PAGE (FIRST PAGE)
   ============================================ */

/* ---------- TABLET (768px–1024px) ---------- */
@media (min-width: 768px) and (max-width: 1024px) {

  .page-cover {
    padding: 40px 32px !important;
  }

  .free-version-badge,
  .paid-version-badge {
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .cover-header {
    margin-bottom: 48px;
  }

  .cover-title {
    font-size: 42px !important;
    margin-bottom: 8px !important;
  }

  .cover-subtitle {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .cover-tagline {
    font-size: 15px;
  }

  .cover-user-info {
    margin-bottom: 40px;
  }

  .cover-user-info h2 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .cover-date,
  .cover-context {
    font-size: 15px;
  }

  .cover-scores-grid {
    gap: 28px;
    margin-bottom: 32px;
  }

  .cover-score-composites {
    max-width: 420px;
  }

  .composite-item {
    padding: 10px 18px;
  }

  .composite-value {
    font-size: 17px;
  }

  .cover-pathway {
    max-width: 560px;
    padding: 24px;
    margin-bottom: 32px;
  }

  .cover-pathway h3 {
    font-size: 24px;
  }

  .cover-pathway p {
    font-size: 15px;
  }

  .cover-researcher {
    max-width: 640px;
    padding: 24px;
  }

  .cover-researcher p {
    font-size: 13px;
    line-height: 1.7;
  }

  .cover-disclaimer {
    font-size: 11px;
    margin-top: 32px;
  }
}

/* ---------- MOBILE (≤ 767px) ---------- */
@media (max-width: 767px) {

  .page-cover {
    padding: 32px 20px !important;
    text-align: center !important;
  }

  .free-version-badge,
  .paid-version-badge {
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 12px;
    border-width: 1.5px;
  }

  .cover-header {
    margin-bottom: 40px;
  }

  .cover-title {
    font-size: 32px !important;
    margin-bottom: 8px !important;
  }

  .cover-subtitle {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .cover-tagline {
    font-size: 14px;
  }

  .cover-user-info {
    margin-bottom: 32px;
  }

  .cover-user-info h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .cover-date,
  .cover-context {
    font-size: 14px;
  }

  .cover-scores-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
  }

  .cover-score-main {
    order: 1;
  }

  .cover-score-composites {
    order: 2;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }

  .composite-item {
    padding: 10px 14px;
    margin-bottom: 8px;
  }

  .composite-label {
    font-size: 14px;
  }

  .composite-value {
    font-size: 16px;
  }

  .cover-pathway {
    max-width: 100%;
    padding: 20px;
    margin-bottom: 28px;
  }

  .cover-pathway h3 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .cover-pathway p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cover-researcher {
    max-width: 100%;
    padding: 20px;
  }

  .cover-researcher p {
    font-size: 13px;
    line-height: 1.7;
  }

  .cover-disclaimer {
    font-size: 11px;
    margin-top: 24px;
  }
}

/* ---------- EXTRA SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {

  .page-cover {
    padding: 28px 16px !important;
  }

  .free-version-badge,
  .paid-version-badge {
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 11px;
  }

  .cover-title {
    font-size: 28px !important;
  }

  .cover-subtitle {
    font-size: 15px;
  }

  .cover-tagline {
    font-size: 13px;
  }

  .cover-user-info h2 {
    font-size: 20px;
  }

  .cover-pathway {
    padding: 18px;
  }

  .cover-researcher {
    padding: 18px;
  }
}

/* ================================
   PART 4: REPORT PAGES (Content)
   ================================ */

.page-title {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #26366B !important; /* Primary */
  margin: 0 0 30px !important;
  border-bottom: 3px solid #FFD700 !important; /* Accent */
  padding-bottom: 15px !important;
}

.page-subtitle {
  font-size: 18px;
  color: #64748B; /* Secondary Accent */
  margin: -20px 0 30px;
}

.report-page h2 {
  font-size: 28px;
  font-weight: 700;
  color: #26366B; /* Primary */
  margin: 40px 0 20px;
}

.report-page h3 {
  font-size: 22px;
  font-weight: 600;
  color: #64748B; /* Secondary Accent */
  margin: 30px 0 15px;
}

.report-page h4 {
  font-size: 18px;
  font-weight: 600;
  color: #26366B; /* Primary */
  margin: 20px 0 10px;
}

.report-page p {
  font-size: 16px;
  line-height: 1.8;
  color: #222329D9; /* Soft Black */
  margin: 0 0 15px;
}

.report-page ul,
.report-page ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

.report-page li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #222329D9; /* Soft Black */
}

.report-page li::marker {
  color: #64748B; /* Secondary Accent */
}

.report-page strong {
  color: #26366B; /* Primary */
  font-weight: 600;
}

.report-page a {
  color: #4F7DF3; /* Focus Blue */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.report-page a:hover {
  color: #26366B; /* Primary */
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE – REPORT PAGES (CONTENT)
   ============================================ */

/* ---------- TABLET (768px–1024px) ---------- */
@media (min-width: 768px) and (max-width: 1024px) {

  .page-title {
    font-size: 28px !important;
    margin: 0 0 24px !important;
    padding-bottom: 12px !important;
  }

  .page-subtitle {
    font-size: 17px;
    margin: -16px 0 26px;
  }

  .report-page h2 {
    font-size: 24px;
    margin: 32px 0 18px;
  }

  .report-page h3 {
    font-size: 20px;
    margin: 26px 0 14px;
  }

  .report-page h4 {
    font-size: 17px;
    margin: 18px 0 10px;
  }

  .report-page p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 14px;
  }

  .report-page ul,
  .report-page ol {
    margin: 0 0 18px 18px;
  }

  .report-page li {
    margin-bottom: 8px;
    line-height: 1.7;
  }
}

/* ---------- MOBILE (≤ 767px) ---------- */
@media (max-width: 767px) {

  .page-title {
    font-size: 24px !important;
    margin: 0 0 20px !important;
    padding-bottom: 10px !important;
    border-bottom-width: 2px !important;
  }

  .page-subtitle {
    font-size: 15px;
    margin: -12px 0 22px;
  }

  .report-page h2 {
    font-size: 22px;
    margin: 26px 0 14px;
  }

  .report-page h3 {
    font-size: 18px;
    margin: 22px 0 12px;
  }

  .report-page h4 {
    font-size: 16px;
    margin: 16px 0 8px;
  }

  .report-page p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 12px;
  }

  .report-page ul,
  .report-page ol {
    margin: 0 0 16px 16px;
  }

  .report-page li {
    margin-bottom: 7px;
    line-height: 1.7;
  }
}

/* ---------- EXTRA SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {

  .page-title {
    font-size: 22px !important;
    margin-bottom: 18px !important;
  }

  .page-subtitle {
    font-size: 14px;
    margin: -10px 0 18px;
  }

  .report-page h2 {
    font-size: 20px;
  }

  .report-page h3 {
    font-size: 17px;
  }

  .report-page h4 {
    font-size: 15px;
  }

  .report-page p {
    font-size: 14px;
  }

  .report-page ul,
  .report-page ol {
    margin-left: 14px;
  }
}

/* ================================
   PART 10: SIDEBAR NAVIGATION
   Sticky left navigation for comprehensive report
   ================================ */

/* ----------------------------------------
   LAYOUT: Grid Container
   ---------------------------------------- */
.antah-report-comprehensive {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
  position: relative;
}

/* Main content area */
.report-main-content {
  min-width: 0; /* Prevents grid blowout */
}

/* ----------------------------------------
   SIDEBAR: Container & Sticky Behavior
   ---------------------------------------- */
.report-sidebar {
  height: 100%;
  position: relative;
}

.sidebar-inner {
  position: sticky;
  top: 150px; /* Increased to account for site header + admin bar */
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(38, 54, 107, 0.08);
  max-height: calc(100vh - 180px); /* Adjusted for header offset */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Custom scrollbar for sidebar */
.sidebar-inner::-webkit-scrollbar {
  width: 6px;
}

.sidebar-inner::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.sidebar-inner::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ----------------------------------------
   SIDEBAR: Header
   ---------------------------------------- */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 2px solid #f1f5f9;
  background: linear-gradient(135deg, #26366B 0%, #1B254B 100%);
  border-radius: 12px 12px 0 0;
}

.sidebar-title {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #FFD700;
}

.sidebar-close {
  display: none; /* Only visible on mobile */
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ----------------------------------------
   SIDEBAR: Navigation Links
   ---------------------------------------- */
.sidebar-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  margin: 0;
}

.nav-link {
  display: block;
  padding: 10px 18px;
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.nav-link:hover {
  background: #f8fafc;
  color: #26366B;
  border-left-color: #cbd5e1;
}

/* Active state */
.nav-link.active {
  background: linear-gradient(90deg, #eff6ff 0%, #ffffff 100%);
  color: #26366B;
  border-left-color: #26366B;
  font-weight: 700;
}

/* Sub-navigation links (indented) */
.nav-sub {
  padding-left: 28px;
  font-size: 0.85rem;
}

/* Pillar links - slightly smaller */
.nav-pillar {
  font-size: 0.82rem;
  padding-top: 7px;
  padding-bottom: 7px;
}

/* Group titles */
.nav-group-title {
  padding: 16px 18px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  margin-top: 8px;
}

/* ----------------------------------------
   SIDEBAR: Footer
   ---------------------------------------- */
.sidebar-footer {
  padding: 12px 18px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  border-radius: 0 0 12px 12px;
}

.back-to-top {
  display: block;
  text-align: center;
  padding: 8px 12px;
  background: #26366B;
  color: #ffffff !important; /* Force white text */
  text-decoration: none !important;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.back-to-top:hover {
  background: #1B254B;
  color: #FFD700 !important; /* Force gold on hover */
  text-decoration: none !important;
}

.back-to-top:visited {
  color: #ffffff !important; /* Ensure visited state is also white */
}

/* ----------------------------------------
   MOBILE: Toggle Button
   ---------------------------------------- */
.mobile-nav-toggle {
  display: none; /* Hidden on desktop */
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: linear-gradient(135deg, #26366B 0%, #1B254B 100%);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(38, 54, 107, 0.35);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(38, 54, 107, 0.45);
}

.nav-toggle-icon {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* ----------------------------------------
   NAVIGATION ANCHORS (for partials)
   ---------------------------------------- */
.nav-anchor {
  height: 1px;
  margin: 0;
  padding: 0;
  visibility: hidden;
}

/* Scroll offset for all sections - accounts for site header */
[id^="sec-"],
[id^="pillar-"],
#privacy-footer,
.nav-anchor {
  scroll-margin-top: 150px;
}

/* ----------------------------------------
   RESPONSIVE: Tablet (768px - 1100px)
   ---------------------------------------- */
@media (max-width: 1100px) and (min-width: 768px) {
  .antah-report-comprehensive {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
  
  .sidebar-inner {
    top: 140px; /* Account for site header */
    max-height: calc(100vh - 170px);
  }
  
  .nav-link {
    padding: 9px 14px;
    font-size: 0.85rem;
  }
  
  .nav-sub {
    padding-left: 22px;
    font-size: 0.8rem;
  }
  
  .nav-pillar {
    font-size: 0.78rem;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  
  .nav-group-title {
    padding: 14px 14px 5px;
    font-size: 0.65rem;
  }
}

/* ----------------------------------------
   RESPONSIVE: Mobile (< 768px)
   ---------------------------------------- */
@media (max-width: 767px) {
  /* Reset grid to single column */
  .antah-report-comprehensive {
    display: block;
  }
  
  /* Hide sidebar by default on mobile */
  .report-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    z-index: 10000;
    background: #fff;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  /* Show sidebar when mobile-open class is added */
  .report-sidebar.mobile-open {
    display: block;
    transform: translateX(0);
  }
  
  .sidebar-inner {
    position: relative;
    top: 0;
    max-height: 100vh;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  
  .sidebar-header {
    border-radius: 0;
  }
  
  .sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sidebar-footer {
    border-radius: 0;
  }
  
  /* Show mobile toggle button */
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
  }
  
  /* Overlay when sidebar is open */
  body.sidebar-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  
  /* Prevent body scroll when sidebar is open */
  body.sidebar-open {
    overflow: hidden;
  }
}

/* ----------------------------------------
   RESPONSIVE: Extra Small Mobile (< 480px)
   ---------------------------------------- */
@media (max-width: 480px) {
  .report-sidebar {
    width: 90%;
  }
  
  .mobile-nav-toggle {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .nav-link {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .nav-sub {
    padding-left: 26px;
  }
}

/* ----------------------------------------
   PRINT STYLES: Hide Navigation
   ---------------------------------------- */
@media print {
  .report-sidebar,
  .mobile-nav-toggle {
    display: none !important;
  }
  
  .antah-report-comprehensive {
    display: block !important;
  }
  
  .report-main-content {
    width: 100% !important;
  }
}