.afb-recaptcha-admin-page {
	margin: 20px 0;
}

.afb-recaptcha-admin-container {
	display: flex;
	gap: 30px;
	margin-top: 20px;
}

.afb-recaptcha-main-content {
	flex: 1;
	max-width: 800px;
}

.afb-recaptcha-sidebar {
	width: 300px;
	flex-shrink: 0;
}

.afb-recaptcha-section {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	margin-bottom: 20px;
	padding: 20px;
}

.afb-recaptcha-section h2,
.afb-recaptcha-section h3 {
	margin-top: 0;
	color: #23282d;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

.afb-recaptcha-test-widget {
	margin-top: 20px;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #f9f9f9;
}

.afb-test-result {
	margin-left: 10px;
	font-weight: 500;
}

.afb-test-result.success {
	color: #46b450;
}

.afb-test-result.error {
	color: #d63638;
}

.afb-test-result.warning {
	color: #ffb900;
}

.afb-recaptcha-v2-settings,
.afb-recaptcha-v3-settings {
	display: none;
}

.afb-recaptcha-v2-settings.show,
.afb-recaptcha-v3-settings.show {
	display: block;
}

.afb-recaptcha-sidebar-section {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	margin-bottom: 20px;
	padding: 15px;
}

.afb-recaptcha-sidebar-section h3 {
	margin-top: 0;
	color: #23282d;
	border-bottom: 1px solid #eee;
	padding-bottom: 8px;
}

.afb-recaptcha-setup-steps {
	padding-left: 0;
	list-style: none;
	counter-reset: step-counter;
}

.afb-recaptcha-setup-steps li {
	counter-increment: step-counter;
	margin-bottom: 20px;
	position: relative;
	padding-left: 40px;
}

.afb-recaptcha-setup-steps li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0;
	background: #2271b1;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
}

.afb-recaptcha-setup-steps li p {
	margin: 5px 0 10px 0;
	color: #666;
	font-size: 13px;
}

.afb-recaptcha-status {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.status-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border-radius: 4px;
}

.status-configured {
	background: #d4edda;
	color: #155724;
}

.status-not-configured {
	background: #fff3cd;
	color: #856404;
}

.status-active {
	background: #d1ecf1;
	color: #0c5460;
}

@media (max-width: 782px) {
	.afb-recaptcha-admin-container {
		flex-direction: column;
	}
	
	.afb-recaptcha-sidebar {
		width: 100%;
	}
}
