/* Table Style */
table.document-table {
	width: 100%;
	max-width: 800px;
	margin: 1em auto;
	border-collapse: collapse;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

table.document-table th {
	background-color: #156082;
	color: white;
	padding: 12px 16px;
}

table.document-table td {
	padding: 12px 16px;
	border-bottom: 1px solid #dee2e6;
}

table.document-table tr:hover {
	background-color: #f8f9fa;
}

table.document-table a {
	color: #156082;
	text-decoration: none;
}

table.document-table a:hover {
	text-decoration: underline;
}

