/* Additional styling for searchable table class in the faculty and staff directory for the LSU E. J. Ourso College of Business */

/* Tables */

table.staffDirectory {
	border: none;
	border-collapse: collapse;
	width: 100%;
	table-layout: fixed;
	margin-bottom: 1em;
	/* Adjustments to better handle the dynamic adding and removing of tables. */
}

.staffDirectoryhidden {
	display: none;
	/* Dummy class to kick tables out of the DOM based on search results. */
}

.staffDirectory td:nth-child(odd) {
	background-color: #f2f2f2; 
	/* Slightly shades every other non-header row. */
}

.staffDirectory th {
	font-family: "Proxima nova", sans-serif;
	font-weight: 600;
	border: none;
	background-color: #ffffff;
	/* Overrides default table header font and sets to proxima nova with heavier weight for better legibility. */
}

.ourso-department {
	width: 50%;
	/* Width handlers for lengthy departments. Avoids uneven resizes or misalignment after search. */
}

.ourso-name {
	width: 25%;
	/* Width handlers for lengthy names. Avoids uneven resizes or misalignment after search. */
}

/* Non-table Elements */

.directorylead {
    font-family: "Proxima Nova",sans-serif;
    font-size: 1.55rem;
    line-height: 2rem;
    font-weight: 600;
    color: #69696D;
	/* Copy of existing LSU p lead style but with unique class name for easier JS targeting */
}

.directoryleadhidden {
	display: none;
	/* Dummy class to kick the alpha headers out of the DOM based on search results. */
}

.noresults {
	font-family: "Proxima Nova",sans-serif;
    font-size: 1.55rem;
    line-height: 2rem;
    font-weight: 600;
    color: #69696D;
	/* Copy of existing LSU p lead style but with unique class name for easier JS targeting */
}