

@media print {
  /* All your print styles go here */
  header {
	display: none !important;
  }
  footer {
	display: none !important;
  }
  nav {
	display: none !important;
  }
  body {
	visibility: hidden;
  }
  #harnessflow_logo {
	display: none !important;
  }
  #tool-icons {
	display: none !important;
  }
  #tool_menu {
	display: none !important;
  }
  #documentation {
	display: none !important;
  }
  #plotly_div {
	visibility: visible !important;
  }
  #sim_results {
	visibility: visible !important;
  }
  
	.results_table {
		  border-collapse: collapse;
		width: auto;
		margin: auto;
		float: left;
		spacing: 20px;
		display: table;
		break-inside: avoid;
	}
	.results_table tr {
		border-left: 1px solid black;
		border-right: 1px solid black;
		padding: 8px;
		text-align: center;
	}
	.results_table td {
		padding: 8px;
	}
	.results_label {
		border-collapse: collapse;
		width: auto;
		margin: 8px;
		padding-right: 12px;
		float: left;
	}
	.results_cell {
		display: table-cell;
		padding:20px;
	}
	.results_row {
		display: table-row;
		page-break-inside: avoid;
		margin: 25mm 25mm 25mm 25mm;
	}
	
	.results_report {
		display: grid;
		float: left;
		width: auto;
	}
	
	.logo_image{
		width: 20%;
	}
	#logo_print{
		width: auto;
		display: grid !important;
		visibility: visible !important;
	};
	
	
	@page {
	
	{ 
		size: 8.5in 11in;   /* auto is the initial value */ 

		/* this affects the margin in the printer settings */ 
		margin: 25mm 25mm 25mm 25mm;  
	}
	@bottom-center {
		content: 'Copyright © 2025 Carroll Consulting Engineers, LLC DBA EMI Sleuth' !important;
	}
	@bottom-right {
		content: counter(page) ' of ' counter(pages) !important;
	}
}
  
}