body {
	font-family: 'Excon-Bold', sans-serif;
	background-color: transparent;
	color: white;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	height: 100vh;
	overflow: hidden;
	padding-left: 20px;
}
table {
	width: auto;
	border-collapse: collapse;
	border: 1px solid white;
	background: rgba(95, 48, 192, 1);
	margin-bottom: 20px;
	display: block;
	max-height: 100px;
	overflow: hidden;
	position: relative;
}
th,
td {
	/* border: 1px solid white; */
	padding: 6px;
	height: 20px; /* Set a fixed height */
}
th {
	background: #e3a026;
	border: 1px solid white;
	color: black;
	position: sticky;
	top: 0;
	z-index: 1;
}
h2 {
	font-size: 16px;
	margin: 10px 0;
	text-align: left;
}
tbody {
	max-height: 45px;
	overflow-y: auto;
	transition: transform 1s ease-in-out;
	border: 1px solid white;
}

table tbody:nth-of-type(1) tr:nth-of-type(1) td {
	border-top: none !important;
}

table thead th {
	border-top: none !important;
	border-bottom: none !important;
	box-shadow: inset 0 1px 0 #ffffff, inset 0 -1px 0 #ffffff;
}

/* and one small fix for weird FF behavior, described in https://stackoverflow.com/questions/7517127/ */

table thead th {
	background-clip: padding-box;
}
