/* Email Notification Table Styles */

/* Styles for HTML email tables displaying form submission data */

.email-notification-table {
	width: 100%;
	border-collapse: collapse;

	/* Main table structure for email notifications */
}

.email-notification-table th {
	text-align: left;
	padding: 8px;
	border: 1px solid #ddd;
	background-color: #f2f2f2;

	/* Header cell styling */
}

.email-notification-table td {
	padding: 8px;
	border: 1px solid #ddd;

	/* Data cell styling */
}
