/* Minimal styles for SEO Audit frontend */
.wpsa-container {
	border: 1px solid #e2e8f0;
	padding: 16px;
	border-radius: 8px;
	background: #fff;
}
.wpsa-form {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}
.wpsa-field {
	flex: 1 1 220px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.wpsa-input {
	flex: 1;
	padding: 8px 10px;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
}
.wpsa-button {
	background: #1d4ed8;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 8px 14px;
	cursor: pointer;
}
.wpsa-button:hover {
	background: #1e40af;
}
.wpsa-message {
	margin: 6px 0;
	color: #334155;
}
.wpsa-message.error {
	color: #b91c1c;
}
.wpsa-results {
	margin-top: 10px;
}
.wpsa-card {
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	padding: 12px;
	margin-bottom: 12px;
}
.wpsa-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 8px;
	margin: 8px 0;
}
.wpsa-grid.vitals {
	grid-template-columns: repeat(7, minmax(120px, 1fr));
}
.wpsa-score {
	font-size: 20px;
	font-weight: 700;
}
.wpsa-screenshot img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	border: 1px solid #e5e7eb;
}
.wpsa-opps ul {
	margin: 0;
	padding-left: 18px;
}
.wpsa-opps li {
	margin: 2px 0;
}

/* Progress UI */
.wpsa-progress { margin: 8px 0 12px; }
.wpsa-progress-bar { position: relative; height: 8px; background: #e2e8f0; border-radius: 9999px; overflow: hidden; }
.wpsa-progress-fill { display: block; height: 100%; background: #10b981; width: 0%; transition: width .4s ease; }
.wpsa-progress-steps { list-style: none; padding: 6px 0 0; margin: 0; display: flex; gap: 12px; font-size: 12px; color: #475569; }
.wpsa-progress-steps li.active { color: #0f766e; font-weight: 600; }
.wpsa-progress-steps li.done { color: #065f46; }