
/* commit */

.tables {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

table {
	display: table;
	/* margin:1%; */
	padding:0px;
	width:100%;
	box-shadow: 10px 10px 5px #888888;
	border:1px solid #000000;
	border-collapse: collapse;
	border-spacing: 0;
	height: fit-content;
}
.header
{
	display: table-row;
	font-weight: bold;
	padding:4px;
	margin:4px;
	text-align: center;
/*	background-color:#007fff;*/
	background-color:#003366;
	border: 1px solid #000000;
	border-left: 1px solid #000000;
	font-family:Arial;
	font-weight:bold;
	color:#ffffff;
	line-height: 2;
	font-size: x-large;
}
tr
{
	display: table-row;
	font-size: 12pt;
	vertical-align:middle;
	border:1px solid #000000;
	border-width:0px 1px 1px 0px;
	text-align:left;
	padding:7px;
	font-family:Arial;
	font-weight:normal;
	color:#000000;
	vertical-align:middle;
	text-align: left;
	padding-left: 1em;
	padding-right: 1em;
}
tr.alter:nth-child(even) {
    background-color: #e4dfdf;
}
td
{
	display: table-cell;
	border: solid;
	border-width: thin;
	padding: 10px;
	vertical-align:middle;
	font-size: large;
}
.date {
	width: 10%;
	text-align: center;
}

.PENDING {
	background-color: orange;
	color: black;
}

.APPROVED {
	background-color: green;
	color: white;
}

.REJECTED {
	background-color: rgb(179, 39, 179);
	color: white;
}

.erase {
	color: white;
	background-color: red;
}