/* 
  Created on : Mar. 15, 2024, 9:36:43 a.m.
  Author     : matthew austin
  Desc       : Used for specific formats when printing the page
*/

@media print {
  .show-help,.show-notes,.show-settings,
  body {
    display: unset !important;
  }
  
  main#curosWorksheet {
    margin-left: 6px !important;
    margin-right: 5px !important;
  }
  /* DO HIDE */
  aside:is(.help-text, .settings, .notes),
  *:is(
  .drill-navigation,
  .show-all-columns,
  .pagination-container,
  .header-right,
  .recapListReportToggle,
  .searchArea,
  .searchInput,
  .context-support,
  .backToTopHref,
  .topMenuHeader,
  /*.dashTitle,*/
  .CanDoManagerV2,
  .CanDoManager,
  [action="ADD"]
  ),
  
  /* Try On Hide for components that do not add value when printing, Move to DO HIDE later */
  *:is(
    .custom-file-input,
    article.more
  ),  
  
  #bodyFooter,
  #sideMenu {
    display: none !important;
  }
  
  /* */
  .drillDownAware {
    text-decoration: none !important;
    font-weight: unset !important;
  }

  /* For Show More */
  article.ttu[inserted_row] > section.dash > section.data > span.show-all-columns >  li,
  article.ttu:not([inserted_row]) > section.dash > section.data > ol.columnGroupLayout:not(.show-all-columns)[visible_group_count="2"] > li:nth-child(n+3),
  article.ttu:not([inserted_row]) > section.dash > section.data > ol.columnGroupLayout:not(.show-all-columns)[visible_group_count="3"] > li:nth-child(n+4),
  article.ttu:not([inserted_row]) > section.dash > section.data > ol.columnGroupLayout:not(.show-all-columns)[visible_group_count="4"] > li:nth-child(n+5),
  article.ttu:not([inserted_row]) > section.dash > section.data > ol.columnGroupLayout:not(.show-all-columns)[visible_group_count="5"] > li:nth-child(n+6),
  article.ttu:not([inserted_row]) > section.dash > section.data > ol.columnGroupLayout:not(.show-all-columns)[visible_group_count="6"] > li:nth-child(n+7),
  article.ttu:not([inserted_row]) > section.dash > section.data > ol.columnGroupLayout:not(.show-all-columns)[visible_group_count="7"] > li:nth-child(n+8),
  article.ttu:not([inserted_row]) > section.dash > section.data > ol.columnGroupLayout:not(.show-all-columns)[visible_group_count="8"] > li:nth-child(n+9) {
    display: inline-block !important;
  }
}