@charset "UTF-8";
/*!
* Lighthouse v5.0.0 (https:/tbd/)
* Copyright 2024 The DHR/OMB Web Team
* Licensed under MIT (https://tbd/LICENSE)
*/

.light-yellow {
	background-color: #ead788;
}

hr {
	opacity: 1;
	outline: none;
	border: none !important;
}
.hr-slim {
	height: 0.1875rem;
}
.hr-primary {
	background-color: var(--lh-brand-1);
}
.hr-accent-3 {
	background-color: var(--lh-accent-3);
}
.border {
	border-color: #ead788;
}



/* Generic Styling, for Desktops/Laptops */
table { 
  width: 100%; 
  border-collapse: collapse; 
}

/* Zebra striping */
/*tr:nth-of-type(odd) { 
  background: #eee; 
}*/
th { 
  background: #005f85; 
  color: white;
  font-weight: 600; 
}
td, th { 
  padding: 6px; 
  border: 1px  solid #005f85; 
  text-align: left; 
}
td:nth-child(1) {
	/* Targets the first column */
	width: 37%;
}
td:nth-child(2) {
	/* Targets the second column */
	width: 30%;
}
td:nth-child(3) {
	/* Targets the third column */
	width: 21%;
}
td:nth-child(4) {
	/* Targets the fourth column */
	width: 12%;
}

 


/* This query will take effect for any screen smaller than 760px
and also iPads specifically.*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	/*thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}*/
	
	tr { border: 1px solid #005f85; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #005f85; 
		position: relative;
		padding-left: 35%; 
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	
	/* Media query for mobile devices (e.g., screens up to 768px wide) */
	@media only screen and (max-width: 768px) {
	  td:nth-child(1) {
		width: 100%; /* Full width on mobile */
		display: block; /* Stack cells vertically */
	  }

	  td:nth-child(2) {
		width: 100%;
		display: block;
	  }

	  td:nth-child(3) {
		width: 100%;
		display: block;
	  }
		td:nth-child(4) {
		width: 100%;
		display: block;
	  }

	  table {
		display: block; /* Ensure table adapts to stacked cells */
	  }
	
	/* Label the data */
	td:nth-of-type(1):before { content: "Section:"; font-weight: 600; }
	td:nth-of-type(2):before { content: "Address:"; font-weight: 600; }
	td:nth-of-type(3):before { content: "Phone/SLC:"; font-weight: 600; }
	td:nth-of-type(4):before { content: "Map:"; font-weight: 600; }


