.wc-api-specs-wrapper {
	margin: 25px 0;
	padding: 20px;
	background: #fdfdfd;
	border: 1px solid #eef1f5;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.wc-api-specs-wrapper .specs-title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-top: 0;
	margin-bottom: 15px;
	letter-spacing: -0.01em;
	border-bottom: 2px solid #333;
	display: inline-block;
	padding-bottom: 4px;
}

.wc-api-specs-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	line-height: 1.5;
}

.wc-api-specs-table tr {
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.2s ease;
}

.wc-api-specs-table tr:last-child {
	border-bottom: none;
}

.wc-api-specs-table tr:hover {
	background-color: #f7f9fc;
}

.wc-api-specs-table td {
	padding: 10px 12px;
	vertical-align: middle;
}

.wc-api-specs-table td.spec-label {
	font-weight: 600;
	color: #666666;
	width: 35%;
	padding-left: 0;
}

.wc-api-specs-table td.spec-value {
	color: #2c3e50;
	font-weight: 500;
	padding-right: 0;
}

/* Animations for updating variations */
@keyframes highlight-fade {
	0% { background-color: #eef3fc; }
	100% { background-color: transparent; }
}

.wc-api-specs-table tr.highlight-updated {
	animation: highlight-fade 0.8s ease-out;
}
