table {
	border-collapse: collapse;
	font-family: helv !important;
	color: var(--curr-txt);
	width: 100%;
}

th {
	text-align: center;
	font-size: 0.8em;
	white-space: pre-wrap;
	padding: 1em;
	max-width: 8em;
}

td {
	padding: 0.5em;
	min-width: 1em;
	max-width: 16em;
	white-space: nowrap;
}

tbody tr:nth-child(odd) td{
	background-color: var(--curr-bg);
}

tbody tr:nth-child(even) td{
	background-color: var(--curr-bg-alt);
}

tbody tr:nth-child(odd) td input{
	background-color: var(--curr-bg-alt);
}
tbody tr:nth-child(even) td input{
	background-color: var(--curr-bg);
}

.table-checkbox {
	position: relative;
	text-align: center;
	vertical-align: middle;
	-ms-transform: scale(1.7); /* IE */
	-moz-transform: scale(1.7); /* FF */
	-webkit-transform: scale(1.7); /* GC */
	padding: 0;
	margin: 0;
}

tbody tr {
	transition: transform .30s ease, text-shadow .30s ease;
}

tbody tr:hover {
	/* font-size: 1.8em; */
	text-shadow: 0px 0px 1px var(--curr-txt);
	-ms-transform: scale(1.02); /* IE */
	-moz-transform: scale(1.02); /* FF */
	-webkit-transform: scale(1.02); /* GC */
	transition: transform .30s ease, text-shadow .30s ease; /*  , background .45s ease */
}

td:has(input:checked:not(:disabled)), td:has(input:checked:not(:disabled)) ~ td{
	background-color: var(--main-green) !important;
	color: var(--curr-bg);
	text-shadow: 0px 0px 1px var(--curr-bg);
}

table a {
	color: inherit !important;
}

table input {
	max-height: 1em;
	margin: 0 !important;
}

.table-input-number {
	max-width: 6em;
}

.table-input-number::before {
	content:"$";
}

.pd-table {
	display: contents;
}
