.zebratable {
	width: 99%;
	//border: 1px solid #bbb;
	margin-left: 2px;
	//margin-right: 5px;
	}
.zebratable th {
	padding-left: 4px;
	padding-right:20px;
	cursor:pointer;
	white-space:nowrap;
	font-weight: normal;
	}
.zebratable thead {
	vertical-align: bottom;
	color: rgba(255,255,255,0.8);
	background-color: var(--color_bg_dark);
	}
.zebratable thead th:hover{
	color: white;
	transition: all 300ms ease-in-out;
	}
.zebratable thead tr {
	height: 24px;
	vertical-align: middle;
	}
.zebratable tbody td {
	border-top: 1px solid white;
	}
.zebratable tbody tr:nth-child(even) {
	background-color: var(--color_bg_dark_10);
	}
.zebratable tbody tr:nth-child(odd) {
	background-color: var(--color_bg_dark_05);
	}
.zebratable tbody tr:hover {
	background-color: white;
	box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.3);
	//transform: scale(1.005);
	transition: all 150ms ease-in-out;
	}
.zebratable a {
	text-decoration: none;
	}