:root {
	--content-height: 82vh;
	--content-width: 100%;
	--left-width: 25%;
	--center-width: 70%;
	--right-width: 5%;
}

.a2 {
	color: lightgray;
}
.a2:hover {
	color: white;
}
/* =========== sticky header/footer =========== */
html, body {
  margin: 0;
  padding: 0;
}

.sticky-footer {
	position: fixed;
   	left: 0;
   	bottom: 0;
   	width: 100%;
   	
	height:8vh;   	
   	
   	background-color: var(--theme-d2-background);
   	color: white;
   	text-align: center;
}

.sticky-header {
    position: sticky;
    top: 0; /* Sticks to the top of its containing block when it reaches this position */
	width: 100%;
	
	height: 10vh;	
	
    background-color: var(--theme-d2-background); /* Example background */
	color: white;
    z-index: 1000;
}
/* =========== sticky header/footer =========== */
/* ===== navbar with sticky header/footer ===== */
form {
	display: inline-block;
}
.textbutton,.hlinesep {
	color: white !important;
}
.textbutton:hover {
	color: var(--comp-l2-background) !important;
}
.hlinesep {
	border-left-color: white !important;
}
/* ===== navbar with sticky header/footer ===== */

ul {
	list-style-type: none;
}
li {
  /* Default background color for all list items */
  background-color: #ffffff; /* White */
  #padding: 5px; /* Add some padding for better visual separation */
  #margin-bottom: 2px; /* Add a small margin between items */
}

/* li:nth-child(odd) {
  background-color: white;
}

li:nth-child(even) {
  background-color: var(--theme-l4-background);
}
*/

form {
	color: var(--theme-d2-background);
	font-weight: bold;
}
table {
	width: 100%;
}
td,th {
	#padding:5px;
	text-align: left;
	vertical-align: top;
}
th {
	#border-bottom:2px solid var(--theme-d2-background);
}
caption {
	font-weight: bold;
}