/**
 * Answer Engine Optimizer AI Settings Page Styles
 *
 * @package AEO_Ranking
 * @since 1.0.0
 */

/* Settings Wrapper */
.aeo-settings-wrap {
	max-width: 1200px;
}

/* Tab Navigation */
.nav-tab-wrapper {
	margin-bottom: 0;
	border-bottom: 1px solid #ccd0d4;
}

.nav-tab {
	font-size: 14px;
	font-weight: 600;
}

/* Tab Content */
.aeo-tab-content {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-top: none;
	padding: 20px;
	margin-top: 0;
}

.aeo-tab-panel {
	max-width: 900px;
}

/* Code Blocks */
.aeo-code-block {
	background: #f6f7f7;
	border: 1px solid #dcdcde;
	border-radius: 4px;
	padding: 15px;
	margin: 15px 0;
	overflow-x: auto;
}

.aeo-code-block code,
.aeo-code-block pre {
	background: transparent;
	color: #1d2327;
	font-family: 'Courier New', Courier, monospace;
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

.aeo-code-block pre {
	white-space: pre-wrap;
	word-wrap: break-word;
}

/* API Key Display */
.aeo-api-key-display {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 15px 0;
}

.aeo-api-key-display input[type="text"] {
	font-family: 'Courier New', Courier, monospace;
	background: #f6f7f7;
}

/* Tables */
.aeo-tab-panel table.widefat {
	margin-top: 15px;
	border: 1px solid #dcdcde;
}

.aeo-tab-panel table.widefat th {
	background: #f6f7f7;
	font-weight: 600;
}

.aeo-tab-panel table.widefat code {
	background: #f0f0f1;
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 12px;
}

/* Setup Instructions */
.aeo-setup-instructions ol {
	counter-reset: item;
	list-style: none;
	padding-left: 0;
}

.aeo-setup-instructions ol > li {
	counter-increment: item;
	margin-bottom: 15px;
	position: relative;
	padding-left: 35px;
}

.aeo-setup-instructions ol > li:before {
	content: counter(item);
	position: absolute;
	left: 0;
	top: 0;
	background: #2271b1;
	color: #fff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

/* AI Features */
.aeo-ai-features ul {
	margin-top: 10px;
}

.aeo-ai-features ul li {
	margin-bottom: 8px;
}

/* Notices */
.notice.inline {
	margin: 20px 0;
	padding: 12px;
}

/* Responsive */
@media screen and (max-width: 782px) {
	.aeo-tab-content {
		padding: 15px;
	}

	.aeo-tab-panel {
		max-width: 100%;
	}

	.aeo-api-key-display {
		flex-direction: column;
		align-items: stretch;
	}

	.aeo-api-key-display input[type="text"] {
		width: 100%;
	}

	.aeo-code-block {
		padding: 10px;
	}

	.aeo-code-block code,
	.aeo-code-block pre {
		font-size: 11px;
	}
}
