.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 90vh;
}

.title {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}

.table {
	width: 600px;
	border-collapse: collapse;
	margin: 0 auto;
}

.table th,
.table td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

.table th {
	background-color: #000000;
	color: white;
}

.table tr:nth-child(even):not(:last-child) {
	background-color: #ffffff;
}

.table tr:nth-child(odd):not(:last-child) {
	background-color: #f2f2f2;
}

.table tr:last-child {
	background-color: #e0e0e0;
	font-weight: bold;
}

.table tr:last-child td {
	border-top: 2px solid #4caf50;
}

.table tr:last-child td:first-child {
	text-align: right;
	padding-right: 20px;
}
