/* Viewer Style Additions 2025-02-11 */
/* Note: The following rule would better be in something like viewer_style_additions.css */
/* but has been included her for brevity's sake */

.viewer-toolbar > ul {
  background-color: transparent;		/* 2025-02-11 Added by CvdL, governs the +, -, 1:1, etc toolbar */
}

.viewer-list {
  background-color: transparent;		/* 2025-02-11 Added by CvdL, governs the img list under the toolbar */
}


/* ================================================ */


/* Tabulator Style Additions 2020-01-23 */
		
/* color for even rows in Tabulator tables */				
.tabulator-row.tabulator-row-even {
	background-color: #F8F8F8;
}

/* color for rows when hovered over in Tabulator tables */
.tabulator-row.tabulator-selectable:hover {
	background-color: #F5F5F5;
	cursor: pointer;
}

/* color to simulate the color of a hyperlink in Tabulator tables */
lookslikelink {
	white-space: pre-wrap;
	cursor:pointer;
	color:blue;
	text-decoration:underline;
}

/* special formatting for Tabulator table cells to ensure text is wrapped */
wraptext {
	white-space: pre-wrap;
}

/* special formatting for Tabulator table cells to ensure text is bold and wrapped */
boldwrap {
	white-space: pre-wrap;
	font-weight: bold;
}

/* special formatting for HCR-specific menu above Tabulator table */
#table-top-section ul {
	list-style-type: none;
	line-height: 140%;/* experimental addition to put large and small text on same baseline */
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: white;
	margin-left: 20px; /* Uniformly shift the menu to the right */
}

#table-top-section li {
	float: left;
	white-space: nowrap; /* Prevent text wrapping */
	margin-left: 20px; /* Move the menu to the right by 20% */
}

#table-top-section li a, .dropbtn {
	display: inline-block;
	font-family:sans-serif;
	font-size:90%;
	color: #006600;
	text-align: center;
	padding: 4px 4px 4px 2px; /* top right bottom left */
	text-decoration: none;
	margin-left: 0%; /* Move the menu to the right by 20% */
}

#table-top-section li a:hover, .dropdown:hover .dropbtn {
	background-color: lightgrey;
}

#table-top-section li.dropdown {
	display: inline-block;
}

#table-top-section .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 120px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

#table-top-section .dropdown-content a {
	color: black;
	padding: 4px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

#table-top-section .dropdown-content a:hover {background-color: #f1f1f1;}

#table-top-section .dropdown:hover .dropdown-content {
	display: block;
}
