
* {
	margin: 0;
	padding: 0;

	box-sizing: border-box;
	font-family: sans-serif;
}

body {
	min-height: 100vh;
	background: url(fond-code.jpg) center / cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

main.table{
	width: 82vw;
	height: 90vh;
	background-color: #fff5;

	backdrop-filter: blur(7px);
	box-shadow: 0 .4rem .8rem #0005;
	border-radius: .8rem;

	overflow: hidden;
}

table {
	width: 100%;
}

table, th, td {
	border-collapse: collapse;
	padding: 1rem;
}

thead th{
	position: sticky;
	top: 0;
	left: 0;
	background-color: #d5d1defe;
}

tbody tr:nth-child(even){
	background-color: #0000000b;
}

tbody tr:hover {
	background-color: #fff6;
}


th, td {
  border-right: 1px solid #ddd;
}

table {
    table-layout: fixed;
    width: 100%; 
}

.table_td table tbody td:nth-child(2) {
    text-align: center;
}

.table_tp table tbody td:nth-child(2) {
    text-align: center;
}


.table_header{
	width: 100%;
	height: 10%;
	background-color: #fff4;
	padding: .8rem 1rem;
}

.table_body{
	width: 95%;
	max-height: calc(89% - .8rem);
	background-color: #fffb;

	margin: .8rem auto;
	border-radius: .6rem;

	overflow: auto;
}

.table_body::-webkit-scrollbar{
	width: 0.5rem;
	height: 0.5rem;
}

.table_body::-webkit-scrollbar-thumb{
	border-radius: .5rem;
	background-color: #0004;
	visibility: hidden;
}

.table_body:hover::-webkit-scrollbar-thumb{
		visibility: visible;
}

