/*
 * Baseline styling for the spec table this plugin injects into WooCommerce
 * product descriptions (see XWI_Mapper::build_features_table()). Most themes,
 * including Woodmart, will restyle this via their own typography rules, but
 * these rules guarantee the table stays readable even on themes with no
 * explicit table styling inside post content.
 */
.xwi-spec-table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0;
}
.xwi-spec-table th,
.xwi-spec-table td {
	text-align: left;
	padding: 10px 14px;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: top;
}
.xwi-spec-table th {
	width: 40%;
	font-weight: 600;
}
.xwi-spec-table tr:nth-child(odd) {
	background: rgba(0, 0, 0, 0.015);
}
