* {
	margin: 0;
	padding: 0;
}
.table {
	width: 100%;
	border: none;
	border-collapse: separate;
}
.table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background-image: linear-gradient(to bottom, rgb(170, 140, 115), rgba(252,236,221,1));
	font-family: 'Montserrat',Arial,sans-serif;
	color: #5c2b2b;
	font-size: 24px;
	border-top: 1px solid #ddd;
	text-align: center;
}
.table tr th:first-child, .table tr td:first-child {
	border-left: 1px solid #ddd;
}
.table tr th:last-child, .table tr td:last-child {
	border-right: 1px solid #ddd;
}
.table thead tr th:first-child {
	border-radius: 20px 0 0 0;
}
.table thead tr th:last-child {
	border-radius: 0 20px 0 0;
}
.table tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 22px;
	vertical-align: top;
	color: #5c2b2b;
	font-family: 'Montserrat',Arial,sans-serif;
}

.table tbody tr:nth-child(even) {
	background: #e3d5d5;
}
.table tbody tr:last-child td{
	border-bottom: 1px solid rgb(192, 189, 189);
}
.table tbody tr:last-child td:first-child {
	border-radius: 0 0 0 20px;
}
.table tbody tr:last-child td:last-child {
	border-radius: 0 0 20px 0;
}

.print_prais {
	display: flex;
	justify-content: center;
	background-color: #e3d5d5;
}
.print_prais_btn {
	padding: 5px;
	border-radius: 5px;
	font-weight: 600;
	background-color: #ddd;
}
.print_prais_icon {
	width: 15%;
	margin-left: 10px;
}


@media (max-width: 670px) {
	.h2 {
    font-size: 20px;
	}
	.table thead th {
		font-size: 15px;
	}
	.table tbody td {
		font-size: 13px;
	}
}
@media (max-width: 980px) {
	.h2 {
    font-size: 24px;
	}
	.table thead th {
		font-size: 20px;
	}
	.table tbody td {
		font-size: 16px;
	}
}

