

table {
	width:100%;
	border-collapse: collapse;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

th,
td {
	padding: 15px;
	background-color: rgba(40, 40, 40, 0);
	color: #0D0D0D;
}

table tr:nth-child(odd) td {
    background-color: white;
}
table tr:nth-child(even) td {
    background-color: #EDEFF3;
}

th {
	text-align: left;
	background-color: #4879AA;
}

tbody tr {
	border-bottom: 1px solid #AAAAAA;
}

tbody td:hover {
	background-color: #AAAAAA;
}

.alert {
	padding: 20px;
	background-color: #f44336;
	color: white;
}

.closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}

.closebtn:hover {
	color: black;
}