/* Target the table with the custom class */
.custom-style {
	border-collapse: collapse;
	width: 100%;
	font-family: Arial, sans-serif;
}

/* Apply light orange background and bold text for the first row */
.custom-style th {
	background-color: #FFE4B5; /* Light orange */
	font-weight: bold;
	border: 1px solid #d3d3d3; /* Light grey grid */
}

/* Apply grid style for the rest of the table */
.custom-style td {
	border: 1px solid #d3d3d3; /* Light grey grid */
	padding: 10px; /* Optional: Adjust spacing */
}

/* Optional: Even rows could have a subtle alternating color */
.custom-style tr:nth-child(even) td {
	background-color: #f9f9f9; /* Light grey for even rows */
}