
		
		
		/* Table */
		table {
			margin: auto;
			font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe Ui";
			font-size: 12px;
		}
		.table-container {
        	overflow: auto;
        }
		.tabel-data {
			border-collapse: collapse;
			font-size: 13px;
		}
		.tabel-data th, 
		.tabel-data td {
			/*border-bottom: 1px solid #e1edff;*/
			border-left: 1px solid #e1edff;
			padding: 7px 17px;
		}
		.tabel-data th, 
		.tabel-data td:last-child {
			border-right: 1px solid #e1edff;
		}
		.tabel-data td:first-child {
			border-top: 1px solid #e1edff;
		}
		.tabel-data td:last-child{
			border-bottom: 0;
		}
		caption {
			caption-side: top;
			margin-bottom: 10px;
		}
		
		/* Table Header */
		.tabel-data thead th {
			background-color: #537212;
			color: #FFFFFF;
			border-color: #b5c98e !important;
			text-transform: uppercase;
		}
		
		/* Table Body */
		.tabel-data tbody td {
			color: #353535;
		}
		
		.tabel-data tbody tr:nth-child(odd) td {
			background-color: #f4fff6;
		}
		.tabel-data tbody tr:hover th,
		.tabel-data tbody tr:hover td {
			background-color: #b5c98e;
			border-color: #b5c98e;
			transition: all .2s;
		}