<style>
	/* Style for the table */
	table.table2 {
	  width: 100%;
	  border-collapse: collapse;
	  margin-bottom: 20px;
	  
	}

	/* Header row */
	table.table2 thead th {
	  background-color: #f2f2f2;
	  font-weight: bold;
	  text-align: left;
	  padding: 6px;
	  border: 1px solid #dddddd;
	}

	/* Table data rows */
	table.table2 tbody td {
	  padding: 5px;
	  border: 1px solid #dddddd;
	  font-family: 'Courier New', monospace;
	}

	/* Alternate row background color for better readability */
	table.table2 tbody tr:nth-child(even) {
	  background-color: #f2f2f2;
	}

	/* Hover effect on table rows */
	table.table2 tbody tr:hover {
	  background-color: #e0e0e0;
	}
</style>