@charset "UTF-8";

#left {
	position: fixed; 
	top: 30vh; 
	left: 8vw;
	z-index: 2;
}

#right {
	position: fixed; 
	top: 30vh; 
	right: 8vw;
	z-index: 2;
}

table {
	table-layout: fixed;
	width: 100%;
	border-collapse: collapse;
}

table > colgroup > col:nth-child(1){
	width: 20%;
}

table > colgroup > col:nth-child(2){
	width: 70%;
}

table > colgroup > col:nth-child(3){
	width: 10%;
}

table tr > td:nth-child(3){
	text-align: right;
}

tbody tr:nth-child(odd) {
	background: var(--section-background-color);
	filter: brightness(1.05);
}

td {
	word-break: break-all;
	padding: 0.5rem 0.2rem 0.5rem 0.2rem;
}