/* .table-custom tbody tr:nth-of-type(odd) {
    background-color: #4294e417; 
}
.table-custom tbody tr:nth-of-type(even) {
    background-color: #ffffff; 
} */

.table-custom {
	width: 100%;
	border: none;
	margin-bottom: 20px;
}
.table-custom thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #d8d8d8;
	font-size: 14px;
}
.table-custom thead tr th:first-child {
	border-radius: 8px 0 0 8px;
}
.table-custom thead tr th:last-child {
	border-radius: 0 8px 8px 0;
}
.table-custom tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: top;
}
.table-custom tbody tr:nth-child(even){
	background: #4294e417;
}
.table-custom tbody tr td:first-child {
	border-radius: 8px 0 0 8px;
}
.table-custom tbody tr td:last-child {
	border-radius: 0 8px 8px 0;
}