/* Add border to the whole table */
#seatMatrix {
	border: 1px solid #ddd;
	border-collapse: collapse; /* ensures no double borders */
}

/* Add border to table cells (th and td) */
#seatMatrix th,
#seatMatrix td {
	border: 1px solid #ddd;
	padding: 8px; /* optional for spacing */
}
