html,
body {
	margin: 0 !important;
	padding: 0 !important;
	background: #f4f7fb !important;
}

#wpadminbar,
#adminmenumain,
#wpfooter {
	display: none !important;
}

#wpcontent,
#wpbody,
#wpbody-content {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

#wpcontent {
	margin-left: 0 !important;
}

.aabcore-seo-wizard {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: #f4f7fb;
	color: #172033;
	font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Arial,
		sans-serif;
}

.aabcore-header {
	height: 72px;
	padding: 0 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	box-sizing: border-box;
}

.aabcore-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.aabcore-logo {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2271b1;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
}

.aabcore-brand-text strong {
	display: block;
	font-size: 16px;
	line-height: 20px;
	color: #111827;
}

.aabcore-brand-text span {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	color: #6b7280;
}

.aabcore-step-count {
	font-size: 13px;
	color: #6b7280;
}

.aabcore-progress {
	width: 100%;
	height: 4px;
	background: #e5e7eb;
}

.aabcore-progress-bar {
	height: 100%;
	background: #2271b1;
	transition: width 0.3s ease;
}

.aabcore-step-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 55px;
	padding: 24px 20px;
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
}

.aabcore-step {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #9ca3af;
	font-size: 12px;
	font-weight: 600;
}

.aabcore-step-number {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e5e7eb;
	color: #6b7280;
	font-weight: 700;
}

.aabcore-step.active {
	color: #2271b1;
}

.aabcore-step.active .aabcore-step-number {
	background: #2271b1;
	color: #ffffff;
}

.aabcore-step.completed {
	color: #16a34a;
}

.aabcore-step.completed .aabcore-step-number {
	background: #dcfce7;
	color: #16a34a;
}

.aabcore-main {
	flex: 1;
	padding: 60px 20px;
	box-sizing: border-box;
}

.aabcore-container {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}

.aabcore-heading {
	text-align: center;
	margin-bottom: 35px;
}

.aabcore-heading-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eaf3fb;
	color: #2271b1;
	font-size: 25px;
	font-weight: 700;
}

.aabcore-heading h1 {
	margin: 0;
	color: #111827;
	font-size: 30px;
	line-height: 1.25;
}

.aabcore-heading p {
	margin: 10px 0 0;
	color: #6b7280;
	font-size: 15px;
	line-height: 1.6;
}

.aabcore-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 32px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.aabcore-card label {
	display: block;
	margin: 0 0 8px;
	color: #111827;
	font-size: 14px;
	font-weight: 600;
}

.aabcore-card input,
.aabcore-card textarea,
.aabcore-card select {
	width: 100%;
	box-sizing: border-box;
	margin: 0 0 22px;
	padding: 13px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #ffffff;
	color: #111827;
	font-size: 14px;
	outline: none;
	box-shadow: none;
}

.aabcore-card input:focus,
.aabcore-card textarea:focus,
.aabcore-card select:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.12);
}

.aabcore-card textarea {
	min-height: 130px;
	resize: vertical;
}

.aabcore-help {
	margin: -10px 0 0;
	color: #6b7280;
	font-size: 13px;
	line-height: 1.5;
}

.aabcore-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-top: 28px;
}

.aabcore-navigation-left,
.aabcore-navigation-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.aabcore-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 8px;
	border: 0;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	box-sizing: border-box;
}

.aabcore-button-primary {
	background: #2271b1;
	color: #ffffff !important;
}

.aabcore-button-primary:hover {
	background: #135e96;
	color: #ffffff !important;
}

.aabcore-button-secondary {
	background: #ffffff;
	color: #374151 !important;
	border: 1px solid #d1d5db;
}

.aabcore-button-secondary:hover {
	background: #f9fafb;
	color: #111827 !important;
}

.aabcore-review {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.aabcore-review-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	padding: 18px 24px;
	border-bottom: 1px solid #e5e7eb;
}

.aabcore-review-row:last-child {
	border-bottom: 0;
}

.aabcore-review-row strong {
	flex: 0 0 180px;
	color: #111827;
	font-size: 14px;
}

.aabcore-review-row span {
	flex: 1;
	color: #6b7280;
	font-size: 14px;
	text-align: right;
	word-break: break-word;
}

.aabcore-completed {
	padding: 70px 40px;
	background: #ffffff;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.aabcore-completed-icon {
	width: 76px;
	height: 76px;
	margin: 0 auto 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #dcfce7;
	color: #16a34a;
	font-size: 38px;
	font-weight: 700;
}

.aabcore-completed h1 {
	margin: 0 0 12px;
	color: #111827;
	font-size: 30px;
}

.aabcore-completed p {
	margin: 0 0 30px;
	color: #6b7280;
	font-size: 15px;
}

.aabcore-footer {
	padding: 20px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #ffffff;
	border-top: 1px solid #e5e7eb;
	color: #9ca3af;
	font-size: 12px;
}

@media (max-width: 800px) {

	.aabcore-header {
		height: 64px;
		padding: 0 20px;
	}

	.aabcore-step-list {
		gap: 8px;
		justify-content: space-between;
		padding: 18px 15px;
	}

	.aabcore-step-title {
		display: none;
	}

	.aabcore-main {
		padding: 40px 15px;
	}

	.aabcore-card {
		padding: 22px;
	}

	.aabcore-heading h1 {
		font-size: 25px;
	}

	.aabcore-review-row {
		display: block;
	}

	.aabcore-review-row strong,
	.aabcore-review-row span {
		display: block;
		text-align: left;
	}

	.aabcore-review-row span {
		margin-top: 6px;
	}

	.aabcore-navigation {
		flex-direction: column;
		align-items: stretch;
	}

	.aabcore-navigation-left,
	.aabcore-navigation-right {
		width: 100%;
	}

	.aabcore-navigation-right {
		justify-content: flex-end;
	}

	.aabcore-button {
		min-height: 46px;
	}

	.aabcore-footer {
		padding: 18px 20px;
	}

}

@media (max-width: 480px) {

	.aabcore-brand-text {
		display: none;
	}

	.aabcore-step-count {
		font-size: 12px;
	}

	.aabcore-step-number {
		width: 25px;
		height: 25px;
		font-size: 11px;
	}

	.aabcore-completed {
		padding: 50px 20px;
	}

}