@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght@150&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
  --font-family: 'Quicksand', sans-serif;
}

html, body{
	margin: 0px 0px 0px 0px;
	height: 100%;
	width: 100%;
	font-size: calc(14px + 0.3vw);
	line-height: normal;
	font-family: var(--font-family);
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	color: #575757;
}

table{
	font-size: 0.8rem;
	border-collapse: collapse;
}

#table1{
	min-width: 50vw;
} 


th{
	border: 1px solid #000000;
	white-space: wrap;
	font-size: 1rem;
	padding: 0.2rem;
	font-weight: normal;
}

td{
	border: 1px solid #000000;
	white-space: wrap;
	font-size: 0.9rem;
	padding: 0.15rem;
	vertical-align: top;
}





thead {
	font-size: 1rem;
	background-color: #DBDBDB;

	position: sticky;
	top: 0;
	z-index: 2;

	/*box-shadow: 0px 0px 0px 1px #000000;*/
}

thead th:first-child {
	background-color: #DBDBDB;
	position: sticky;
	left: 0;
	z-index: 2;
}

tbody td:first-child{
	background-color: #DBDBDB;
	position: sticky;
	left: 0;
	z-index: 1;
}


tfoot {
	font-size: 1rem;
	background-color: #DBDBDB;

	position: sticky;
	bottom: 0;
	z-index: 2;

	/*box-shadow: 0px 0px 0px 1px #000000;*/
}



input, select, textarea{
	width: 45%;
	padding: 5px;
	font-size: calc(15px + 0.3vw);
	/*min-width: 20vw;*/
}

input[type="checkbox"], input[type="radio"] {
	width: 20px;
	height: 20px;
	min-width: 20px;
	font-size: 20px;
	background-color: var(--BaseBackgroundColor1);
	background: var(--BaseBackgroundColor1);
	border: 1px solid var(--BaseFontColor6);
}

hr {
	border: 0;
	border-top: 1px solid #919191;
}

a{
	text-decoration: none;
	cursor: pointer;
	color: #575757;
}

.ResponsiveLabel{
	text-align: right;
	padding: 5px;
}


.material-symbols-outlined{
	cursor: pointer;
	border-radius: 7px 7px 7px 7px;
	background-color: #DBDBDB;
	margin: 0.1rem;

	/*border: 1px solid #EBEDEF;*/
}


.material-symbols-outlined:hover {
	background-color: #FCFCFC;
	opacity: 0.5;
}


#BigNav{
	font-size: 1.2rem;
	display: flex;
}
#SmallNav{
	display: none;
}

.NavItem{
	border-radius: 7px 7px 7px 7px;
	background-color: #DBDBDB;
}
.MenuItem{
	font-size: 1.2rem;
	border-radius: 7px 7px 7px 7px;
	padding: 0.25rem;
	white-space: nowrap;
	margin: 0.1rem;
	background-color: #DBDBDB;
	cursor: pointer;
}
.MenuItem:hover{
	background-color: #e8e8e8;
	opacity: 0.8;
}



#tablediv:focus {
    outline: none;
}



@media (max-width: 900px) {

/*
	#BigNav{
		display: none;
	}
	#SmallNav{
		display: block;
	}
*/

	.ResponsiveLabel{
		text-align: left;
	}
	input, select, textarea{
		width: 96%;
	}

/*
	.MenuItem{
		border-radius: 5px 5px 5px 5px;
		padding: 2px;
		margin: 2px;
		background-color: #F0F0F0;
	}
*/


}