/**
 * CWS MCP Admin Styles
 *
 * @package CWS_MCP
 */

.cws-mcp-wrap {
	max-width: 1600px;
	margin: 20px auto;
}

@media (max-width: 782px) {
	.cws-mcp-wrap {
		margin: 0;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-right: 16px;
		padding-left: 5px;
	}
}

.cws-mcp-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.cws-mcp-logo {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.cws-mcp-header h1 {
	margin: 0;
}

.cws-mcp-wrap h1 {
	margin-bottom: 10px;
}

.cws-mcp-card {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.cws-mcp-card h2 {
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #e5e5e5;
}

.cws-mcp-card h3 {
	margin-top: 0;
	color: #1d2327;
}

.cws-mcp-tabs {
	background: #fff;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.cws-mcp-tab-nav {
	display: flex;
	border-bottom: 1px solid #ccd0d4;
	background: #f6f7f7;
	border-radius: 4px 4px 0 0;
	padding: 0;
	margin: 0;
}

.cws-mcp-tab-button {
	flex: 1;
	padding: 15px 20px;
	background: transparent;
	border: none;
	border-right: 1px solid #ccd0d4;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #50575e;
	transition: all 0.2s ease;
	outline: none;
}

.cws-mcp-tab-button:last-child {
	border-right: none;
}

.cws-mcp-tab-button:hover {
	background: #fff;
	color: #2271b1;
}

.cws-mcp-tab-button:focus {
	box-shadow: inset 0 0 0 2px #2271b1;
	z-index: 1;
}

.cws-mcp-tab-button.active {
	background: #fff;
	color: #2271b1;
	border-bottom: 3px solid #2271b1;
	margin-bottom: -1px;
}

.cws-mcp-tab-content {
	padding: 0;
}

.cws-mcp-tab-panel {
	display: none;
	padding: 30px;
	animation: fadeIn 0.3s ease;
}

.cws-mcp-tab-panel.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cws-mcp-tab-panel h2 {
	margin-top: 0;
	margin-bottom: 20px;
	color: #1d2327;
}

.cws-mcp-tab-panel ol,
.cws-mcp-tab-panel ul {
	margin-left: 20px;
}

.cws-mcp-tab-panel li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.cws-mcp-endpoint-box {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f6f7f7;
	padding: 15px;
	border-radius: 4px;
	border: 1px solid #dcdcde;
	margin: 15px 0;
}

.cws-mcp-endpoint-box code {
	flex: 1;
	background: transparent;
	padding: 0;
	font-size: 13px;
	word-break: break-all;
	color: #2271b1;
}

.cws-mcp-copy-btn {
	flex-shrink: 0;
	min-width: 80px;
}

.cws-mcp-copy-btn.copied {
	background: #00a32a;
	border-color: #00a32a;
	color: #fff;
}

.cws-mcp-code-block {
	background: #1e1e1e;
	color: #d4d4d4;
	padding: 20px;
	border-radius: 4px;
	margin: 15px 0;
	overflow-x: auto;
}

.cws-mcp-code-block code,
.cws-mcp-code-block pre {
	background: transparent;
	color: #d4d4d4;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

.cws-mcp-profiles-container {
	max-width: 100%;
}

.cws-mcp-active-profile {
	background: #f0f6fc;
	border: 1px solid #2271b1;
	border-radius: 4px;
	padding: 15px;
	margin-top: 15px;
}

.cws-mcp-active-profile h3 {
	margin: 0 0 10px 0;
	color: #2271b1;
}

.cws-mcp-active-profile .description {
	margin: 5px 0;
}

.cws-mcp-tool-count {
	font-weight: 600;
	color: #1d2327;
	margin: 10px 0 0 0;
}

.cws-mcp-profiles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 15px;
	margin-top: 15px;
}

.cws-mcp-profile-card {
	background: #f6f7f7;
	border: 2px solid #dcdcde;
	border-radius: 4px;
	padding: 20px;
	transition: all 0.2s ease;
	position: relative;
}

.cws-mcp-profile-card:hover {
	border-color: #2271b1;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cws-mcp-profile-card.active {
	background: #f0f6fc;
	border-color: #2271b1;
}

.cws-mcp-profile-card h3 {
	margin: 0 0 10px 0;
	font-size: 16px;
}

.cws-mcp-profile-card p {
	margin: 5px 0;
	font-size: 13px;
	line-height: 1.5;
}

.cws-mcp-profile-tools {
	font-weight: 600;
	color: #50575e;
	margin-top: 10px;
}

.cws-mcp-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 3px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: -4px;
}

.cws-mcp-badge-active {
	background: #22b14d;
	color: #fff;
}

.cws-mcp-tools-list {
	margin-top: 15px;
}

.cws-mcp-tool-category {
	margin-bottom: 25px;
}

.cws-mcp-tool-category h3 {
	margin: 0 0 10px 0;
	padding: 10px 15px;
	background: #f6f7f7;
	border-left: 3px solid #2271b1;
	font-size: 15px;
}

.cws-mcp-tool-category ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cws-mcp-tool-category li {
	padding: 10px 15px;
	border-bottom: 1px solid #f0f0f1;
	line-height: 1.6;
}

.cws-mcp-tool-category li:last-child {
	border-bottom: none;
}

.cws-mcp-tool-category li strong {
	color: #2271b1;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 13px;
}

.cws-mcp-tool-category li .description {
	color: #50575e;
	font-size: 13px;
}

#profile_id {
	max-width: 100%;
}

#profile-description {
	margin-top: 10px;
	font-style: italic;
}

@media screen and (max-width: 782px) {
	.cws-mcp-tab-nav {
		flex-direction: column;
	}

	.cws-mcp-tab-button {
		border-right: none;
		border-bottom: 1px solid #ccd0d4;
	}

	.cws-mcp-tab-button:last-child {
		border-bottom: none;
	}

	.cws-mcp-profiles-grid {
		grid-template-columns: 1fr;
	}

	.cws-mcp-endpoint-box {
		flex-direction: column;
		align-items: stretch;
	}

	.cws-mcp-copy-btn {
		width: 100%;
	}
}

.notice.cws-mcp-notice {
	margin: 15px 0;
}

.cws-mcp-test-connection {
	margin-top: 15px;
}

.cws-mcp-test-form {
	background: #f6f7f7;
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #dcdcde;
}

.cws-mcp-form-field {
	margin-bottom: 15px;
}

.cws-mcp-form-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	color: #1d2327;
}

.cws-mcp-form-field input[type="text"],
.cws-mcp-form-field input[type="password"],
.cws-mcp-form-field select {
	width: 100%;
	max-width: 100%;
}

.cws-mcp-tab-panel .form-table select {
	width: 100%;
	max-width: 100%;
}

.cws-mcp-form-field .description {
	margin-top: 5px;
	font-size: 13px;
	color: #646970;
}

#test-connection-btn {
	margin-top: 10px;
}

.cws-mcp-test-result {
	margin-top: 20px;
	padding: 15px 20px;
	border-radius: 4px;
	border-left: 4px solid;
	animation: slideIn 0.3s ease;
}

.cws-mcp-test-result.success {
	background: #edfaef;
	border-left-color: #00a32a;
}

.cws-mcp-test-result.error {
	background: #fcf0f1;
	border-left-color: #d63638;
	margin: 20px 0 15px !important;
	padding: 15px 20px;
}

.cws-mcp-test-status {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 8px;
}

.cws-mcp-test-result.success .cws-mcp-test-status {
	color: #00a32a;
}

.cws-mcp-test-result.error .cws-mcp-test-status {
	color: #d63638;
}

.cws-mcp-test-message {
	color: #1d2327;
	line-height: 1.6;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cws-mcp-app-password-creator {
	background: #f6f7f7;
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #dcdcde;
	margin-top: 15px;
}

#create-app-password-btn {
	margin-top: 10px;
}

.cws-mcp-app-password-result {
	margin-top: 20px;
	padding: 20px;
	background: #fff;
	border: 2px solid #00a32a;
	border-radius: 4px;
	animation: slideIn 0.3s ease;
}

.cws-mcp-app-password-display label {
	display: block;
	font-weight: 600;
	margin-bottom: 10px;
	color: #1d2327;
	font-size: 14px;
}

.cws-mcp-password-box {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f6f7f7;
	padding: 15px;
	border-radius: 4px;
	border: 1px solid #dcdcde;
	margin-bottom: 10px;
}

.cws-mcp-password-box code {
	flex: 1;
	background: transparent;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	word-break: break-all;
	color: #00a32a;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.cws-mcp-warning {
	color: #d63638;
	font-weight: 600;
	margin: 0;
}

.cws-mcp-tab-link {
	color: #2271b1;
	text-decoration: none;
	font-weight: 600;
}

.cws-mcp-tab-link:hover {
	color: #135e96;
	text-decoration: underline;
}

/* Profile Management Styles */
.cws-mcp-profile-actions-bar {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}


.cws-mcp-profile-card.custom {
	border-left: 4px solid #d63638;
}

.cws-mcp-profile-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
	gap: 10px;
}

.cws-mcp-profile-header h3 {
	margin: 0;
	flex: 1;
}

.cws-mcp-profile-badges {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.cws-mcp-badge {
	display: inline-block;
	padding: 3px 8px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 3px;
	text-transform: uppercase;
	white-space: nowrap;
}

.cws-mcp-badge.active {
	background: #22b152;
	color: #fff;
}

.cws-mcp-badge.custom {
	background: #d63638;
	color: #fff;
}

.cws-mcp-badge.pro {
	background: #7c3aed;
	color: #fff;
}

.cws-mcp-profile-description {
	color: #646970;
	font-size: 13px;
	line-height: 1.5;
	margin: 10px 0;
}

.cws-mcp-profile-meta {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	color: #646970;
	margin: 10px 0;
}

.cws-mcp-profile-meta .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.cws-mcp-profile-actions {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #dcdcde;
}

.cws-mcp-profile-actions .button {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

.cws-mcp-profile-actions .button .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* Modal Styles */
.cws-mcp-modal {
	display: none;
	position: fixed;
	z-index: 100000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
	animation: fadeIn 0.2s ease;
}

.cws-mcp-modal-content {
	background-color: #fff;
	margin: 3% auto;
	padding: 30px;
	border: 1px solid #ccd0d4;
	border-radius: 4px;
	width: 90%;
	max-width: 800px;
	max-height: 85vh;
	overflow-y: auto;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cws-mcp-modal-close {
	color: #646970;
	float: right;
	font-size: 32px;
	font-weight: bold;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease;
}

.cws-mcp-modal-close:hover,
.cws-mcp-modal-close:focus {
	color: #d63638;
}



.cws-mcp-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cws-mcp-form-field label .required {
	color: #d63638;
	font-weight: bold;
}

.cws-mcp-form-field textarea {
	width: 100%;
	max-width: 100%;
}

.cws-mcp-tools-selection {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.cws-mcp-tool-count-display {
	margin-left: auto;
	font-weight: 600;
	color: #2271b1;
}

/* Utility hidden class used by JS filter */
.cws-mcp-hidden {
	display: none !important;
}

/* Tool section layout (WP + WooCommerce split) */
.cws-mcp-tool-section {
	margin-bottom: 10px;
}

.cws-mcp-tool-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 10px;
	border: 1px solid #dcdcde;
	border-radius: 3px 3px 0 0;
	position: sticky;
	top: 0;
	z-index: 1;
}

.cws-mcp-tool-section-header h4 {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Shared section icon badge */
.cws-mcp-section-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 18px;
	padding: 0 5px;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	border-radius: 3px;
	flex-shrink: 0;
	letter-spacing: 0.3px;
}

/* WordPress section */
.cws-mcp-tool-section-header--wp {
	background: #f0f6fc;
	border-color: #2271b1;
}

.cws-mcp-tool-section-header--wp h4 {
	color: #2271b1;
}

.cws-mcp-wp-icon {
	background: #2271b1;
}

.cws-mcp-tool-section--wp .cws-mcp-section-tools {
	/* border: 1px solid #a7c7e7; */
	border-top: none;
	border-radius: 0 0 3px 3px;
	margin-bottom: 10px;
}

.cws-mcp-tool-checkbox--wp .tool-name {
	color: #2271b1;
}

.cws-mcp-tool-checkbox--wp:hover {
	background: #f0f6fc;
	border-color: #a7c7e7;
}

/* WooCommerce section */
.cws-mcp-tool-section-header--woo {
	background: #f3eef8;
	border-color: #7f54b3;
}

.cws-mcp-tool-section-header--woo h4 {
	color: #7f54b3;
}

.cws-mcp-woo-icon {
	background: #7f54b3;
}

.cws-mcp-tool-section--woo .cws-mcp-section-tools {
	/* border: 1px solid #c9a0dc; */
	border-top: none;
	border-radius: 0 0 3px 3px;
}

.cws-mcp-tool-checkbox--woo .tool-name {
	color: #7f54b3;
}

.cws-mcp-tool-checkbox--woo:hover {
	background: #fdf6ff;
	border-color: #c9a0dc;
}

/* WordPress domain sub-groups */
.cws-mcp-wp-subgroup-title {
	margin: 0;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #135e96;
	background: #f0f6fc;
	border-left: 3px solid #2271b1;
}

/* WooCommerce domain sub-groups */
.cws-mcp-woo-subgroup-title {
	margin: 0;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #96588a;
	background: #faf5ff;
	border-left: 3px solid #7f54b3;
}

/* Yoast SEO section */
.cws-mcp-tool-section-header--yoast {
	background: #fdf4f9;
	border-color: #9d1e6b;
}

.cws-mcp-tool-section-header--yoast h4 {
	color: #9d1e6b;
}

.cws-mcp-yoast-icon {
	background: #9d1e6b;
}

.cws-mcp-tool-section--yoast .cws-mcp-section-tools {
	border-top: none;
	border-radius: 0 0 3px 3px;
}

.cws-mcp-tool-checkbox--yoast .tool-name {
	color: #9d1e6b;
}

.cws-mcp-tool-checkbox--yoast:hover {
	background: #fef7fb;
	border-color: #d896b8;
}

/* Yoast SEO category sub-groups */
.cws-mcp-yoast-subgroup-title {
	margin: 0;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #9d1e6b;
	background: #fdf4f9;
	border-left: 3px solid #9d1e6b;
}

/* Rank Math SEO section */
.cws-mcp-tool-section-header--rankmath {
	background: #f0fdf4;
	border-color: #059669;
}

.cws-mcp-tool-section-header--rankmath h4 {
	color: #059669;
}

.cws-mcp-rankmath-icon {
	background: #059669;
}

.cws-mcp-tool-section--rankmath .cws-mcp-section-tools {
	border-top: none;
	border-radius: 0 0 3px 3px;
}

.cws-mcp-tool-checkbox--rankmath .tool-name {
	color: #059669;
}

.cws-mcp-tool-checkbox--rankmath:hover {
	background: #f0fdf4;
	border-color: #6ee7b7;
}

/* Rank Math SEO category sub-groups */
.cws-mcp-rankmath-subgroup-title {
	margin: 0;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #059669;
	background: #f0fdf4;
	border-left: 3px solid #059669;
}

/* Contact Form 7 section */
.cws-mcp-tool-section-header--cf7 {
	background: #eff6ff;
	border-color: #2271b1;
}

.cws-mcp-tool-section-header--cf7 h4 {
	color: #2271b1;
}

.cws-mcp-tool-section--cf7 .cws-mcp-section-tools {
	border-top: none;
	border-radius: 0 0 3px 3px;
}

.cws-mcp-tool-checkbox--cf7 .tool-name {
	color: #2271b1;
}

.cws-mcp-tool-checkbox--cf7:hover {
	background: #eff6ff;
	border-color: #93c5fd;
}

/* Contact Form 7 category sub-groups */
.cws-mcp-cf7-subgroup-title {
	margin: 0;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #2271b1;
	background: #eff6ff;
	border-left: 3px solid #2271b1;
}

/* Elementor section */
.cws-mcp-tool-section-header--elementor {
	background: #fef2f2;
	border-color: #e03a3e;
}

.cws-mcp-tool-section-header--elementor h4 {
	color: #e03a3e;
}

.cws-mcp-tool-section--elementor .cws-mcp-section-tools {
	border-top: none;
	border-radius: 0 0 3px 3px;
}

.cws-mcp-tool-checkbox--elementor .tool-name {
	color: #e03a3e;
}

.cws-mcp-tool-checkbox--elementor:hover {
	background: #fef2f2;
	border-color: #fca5a5;
}

/* Elementor category sub-groups */
.cws-mcp-elementor-subgroup-title {
	margin: 0;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #e03a3e;
	background: #fef2f2;
	border-left: 3px solid #e03a3e;
}

/* Jetpack section */
.cws-mcp-tool-section-header--jetpack {
	background: #f0fafe;
	border-color: #00a0d2;
}

.cws-mcp-tool-section-header--jetpack h4 {
	color: #00a0d2;
}

.cws-mcp-tool-section--jetpack .cws-mcp-section-tools {
	border-top: none;
	border-radius: 0 0 3px 3px;
}

.cws-mcp-tool-checkbox--jetpack .tool-name {
	color: #00a0d2;
}

.cws-mcp-tool-checkbox--jetpack:hover {
	background: #f0fafe;
	border-color: #7dd3f0;
}

/* Jetpack category sub-groups */
.cws-mcp-jetpack-subgroup-title {
	margin: 0;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #00a0d2;
	background: #f0fafe;
	border-left: 3px solid #00a0d2;
}

/* Section bulk-action buttons */
.cws-mcp-section-bulk-actions {
	display: flex;
	gap: 5px;
	flex-shrink: 0;
}

.cws-mcp-section-bulk-actions .button {
	font-size: 11px;
	height: auto;
	padding: 2px 8px;
	line-height: 1.6;
}

.cws-mcp-tools-filter {
	margin-bottom: 15px;
}

.cws-mcp-tools-filter-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: stretch;
}

.cws-mcp-tool-search-input {
	width: 100%;
	padding: 8px 12px;
	font-size: 14px;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	box-shadow: 0 0 0 transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cws-mcp-tool-search-input:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: 2px solid transparent;
}

.cws-mcp-tool-category-select {
	min-width: 200px;
	width: auto;
	padding: 8px 12px;
	font-size: 14px;
	border: 1px solid #8c8f94;
	border-radius: 4px;
	background-color: #fff;
	box-shadow: 0 0 0 transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.cws-mcp-tool-category-select:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: 2px solid transparent;
}

.cws-mcp-tools-filter-count {
	margin: 8px 0 0;
	font-size: 13px;
	color: #646970;
	min-height: 1.2em;
	font-weight: 500;
}

.cws-mcp-no-tools-found {
	text-align: center;
	color: #888;
	font-style: italic;
	padding: 20px 0;
	margin: 0;
}

.cws-mcp-tools-list {
	max-height: 400px;
	overflow-y: auto;
	border: 1px solid #dcdcde;
	padding: 10px;
	background: #f6f7f7;
	border-radius: 4px;
}

.cws-mcp-tool-checkbox {
	display: block;
	padding: 10px;
	margin-bottom: 5px;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 3px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.cws-mcp-tool-checkbox:hover {
	background: #f0f6fc;
	border-color: #2271b1;
}

.cws-mcp-tool-checkbox input[type="checkbox"] {
	margin-right: 10px;
	cursor: pointer;
}

.cws-mcp-tool-checkbox .tool-name {
	font-weight: 600;
	color: #2271b1;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	font-size: 13px;
}

.cws-mcp-tool-checkbox .tool-description {
	display: block;
	font-size: 12px;
	color: #646970;
	margin-left: 30px;
	margin-top: 3px;
	line-height: 1.4;
}

.cws-mcp-modal-actions {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #dcdcde;
	display: flex;
	gap: 10px;
}

#cws-mcp-import-section {
	animation: slideIn 0.3s ease;
}

@media screen and (max-width: 782px) {
	.cws-mcp-modal-content {
		width: 95%;
		margin: 5% auto;
		padding: 20px;
	}

	.cws-mcp-profile-actions-bar {
		flex-direction: column;
	}

	.cws-mcp-profile-actions-bar .button {
		width: 100%;
		justify-content: center;
	}

	.cws-mcp-profile-header {
		flex-direction: column;
	}

	.cws-mcp-profile-actions {
		flex-direction: column;
	}

	.cws-mcp-profile-actions .button {
		width: 100%;
	}

	.cws-mcp-modal-actions {
		flex-direction: column;
	}

	.cws-mcp-modal-actions .button {
		width: 100%;
	}

	.cws-mcp-tools-selection {
		flex-direction: column;
		align-items: stretch;
	}

	.cws-mcp-tool-count-display {
		margin-left: 0;
		text-align: center;
	}

	.cws-mcp-tools-filter-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.cws-mcp-tool-category-select {
		min-width: 100%;
		width: 100%;
	}
}

/* Restart Reminder Modal Styles */
.cws-mcp-restart-modal-content {
	max-width: 600px;
	text-align: center;
}

.cws-mcp-restart-modal-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 20px;
	background: #f0f6fc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #2271b1;
}

.cws-mcp-restart-modal-icon .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
	color: #2271b1;
	/* animation: rotate 2s linear infinite; */
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.cws-mcp-restart-modal-content h2 {
	color: #1d2327;
	font-size: 24px;
	margin-bottom: 20px;
}

.cws-mcp-restart-message {
	text-align: left;
	margin: 20px 0;
}

.cws-mcp-restart-message p {
	font-size: 15px;
	line-height: 1.6;
	color: #1d2327;
	margin: 15px 0;
}

.cws-mcp-restart-steps {
	background: #f6f7f7;
	padding: 20px;
	border-radius: 4px;
	border-left: 4px solid #2271b1;
	margin: 20px 0;
}

.cws-mcp-restart-steps h3 {
	margin: 0 0 15px 0;
	color: #1d2327;
	font-size: 16px;
}

.cws-mcp-restart-steps ol {
	margin: 0;
	padding-left: 20px;
}

.cws-mcp-restart-steps li {
	font-size: 14px;
	line-height: 1.8;
	color: #1d2327;
	margin-bottom: 8px;
}

.cws-mcp-restart-note {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #fff8e5;
	padding: 15px;
	border-radius: 4px;
	border-left: 4px solid #dba617;
	font-size: 13px;
	color: #1d2327;
	margin: 20px 0 0 0;
}

.cws-mcp-restart-note .dashicons {
	color: #dba617;
	font-size: 20px;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.cws-mcp-restart-modal-content .cws-mcp-modal-actions {
	justify-content: center;
	margin-top: 30px;
}

@media screen and (max-width: 782px) {
	.cws-mcp-restart-modal-content {
		padding: 20px;
	}

	.cws-mcp-restart-modal-icon {
		width: 60px;
		height: 60px;
	}

	.cws-mcp-restart-modal-icon .dashicons {
		font-size: 36px;
		width: 36px;
		height: 36px;
	}

	.cws-mcp-restart-modal-content h2 {
		font-size: 20px;
	}
}

/* OAuth Credentials Styles */
.cws-mcp-credentials-display {
	background: #f6f7f7;
	padding: 20px;
	border-radius: 4px;
	border: 1px solid #dcdcde;
	margin-top: 15px;
}

.cws-mcp-credential-item {
	margin-bottom: 20px;
}

.cws-mcp-credential-item:last-child {
	margin-bottom: 0;
}

.cws-mcp-credential-item label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #1d2327;
	font-size: 14px;
}

.cws-mcp-credential-value {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: #fff;
	padding: 12px 15px;
	border-radius: 4px;
	border: 1px solid #dcdcde;
}

.cws-mcp-credential-value code {
	flex: 1;
	background: transparent;
	padding: 0;
	font-size: 14px;
	font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
	color: #2271b1;
	word-break: break-all;
}

.cws-mcp-credential-value code.cws-mcp-secret-hidden {
	color: #646970;
	letter-spacing: 2px;
}

.cws-mcp-notice {
	padding: 15px;
	border-radius: 4px;
	margin: 15px 0;
	border-left: 4px solid;
}

.cws-mcp-notice.notice-warning {
	background: #fff8e5;
	border-left-color: #dba617;
}

.cws-mcp-notice.notice-info {
	background: #f0f6fc;
	border-left-color: #2271b1;
}

.cws-mcp-notice p {
	margin: 5px 0;
}

.cws-mcp-notice strong {
	display: block;
	margin-bottom: 5px;
}

.cws-mcp-setup-steps {
	list-style: none;
	counter-reset: step-counter;
	padding: 0;
	margin: 20px 0;
}

.cws-mcp-setup-steps li {
	counter-increment: step-counter;
	position: relative;
	padding-left: 50px;
	margin-bottom: 25px;
}

.cws-mcp-setup-steps li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	top: 0;
	width: 32px;
	height: 32px;
	background: #2271b1;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
}

.cws-mcp-setup-steps li strong {
	display: block;
	margin-bottom: 8px;
	color: #1d2327;
	font-size: 15px;
}

.cws-mcp-setup-steps li p {
	margin: 5px 0;
	color: #646970;
	line-height: 1.6;
}

.cws-mcp-config-field {
	margin: 10px 0;
	padding: 10px 15px;
	background: #f6f7f7;
	border-radius: 4px;
	border: 1px solid #dcdcde;
}

.cws-mcp-config-field label {
	display: inline-block;
	font-weight: 600;
	margin-right: 10px;
	color: #1d2327;
	min-width: 120px;
}

.cws-mcp-config-field code {
	color: #2271b1;
}

.cws-mcp-endpoint-list {
	margin-top: 15px;
}

.cws-mcp-endpoint-item {
	padding: 12px 15px;
	background: #f6f7f7;
	border-radius: 4px;
	border: 1px solid #dcdcde;
	margin-bottom: 10px;
}

.cws-mcp-endpoint-item label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
	color: #1d2327;
	font-size: 13px;
}

.cws-mcp-endpoint-item code {
	display: block;
	color: #2271b1;
	font-size: 12px;
	word-break: break-all;
}

@media screen and (max-width: 782px) {
	.cws-mcp-credential-value {
		flex-direction: column;
		align-items: stretch;
	}

	.cws-mcp-credential-value .button {
		width: 100%;
	}

	.cws-mcp-setup-steps li {
		padding-left: 45px;
	}

	.cws-mcp-setup-steps li::before {
		width: 28px;
		height: 28px;
		font-size: 14px;
	}

	.cws-mcp-config-field label {
		display: block;
		margin-bottom: 5px;
		min-width: auto;
	}
}

/* FAQ Styles */
.cws-mcp-faq-container {
	margin-top: 20px;
}

.cws-mcp-faq-category {
	margin-bottom: 30px;
}

.cws-mcp-faq-category h3 {
	margin: 0 0 15px 0;
	padding: 12px 15px;
	background: #f0f6fc;
	border-left: 4px solid #2271b1;
	font-size: 16px;
	color: #1d2327;
}

.cws-mcp-faq-item {
	margin-bottom: 10px;
	border: 1px solid #dcdcde;
	border-radius: 4px;
	background: #fff;
	overflow: hidden;
	transition: all 0.2s ease;
}

.cws-mcp-faq-item:hover {
	border-color: #2271b1;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cws-mcp-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	color: #1d2327;
	transition: all 0.2s ease;
}

.cws-mcp-faq-question:hover {
	background: #f6f7f7;
	color: #2271b1;
}

.cws-mcp-faq-question:focus {
	outline: 2px solid #2271b1;
	outline-offset: -2px;
}

.cws-mcp-faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2271b1;
	color: #fff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 1px;
	transition: transform 0.3s ease;
}

.cws-mcp-faq-item.active .cws-mcp-faq-icon {
	transform: rotate(45deg);
	background: #135e96;
}

.cws-mcp-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.cws-mcp-faq-item.active .cws-mcp-faq-answer {
	max-height: 2000px;
}

.cws-mcp-faq-answer > *:first-child {
	padding-top: 0;
	margin-top: 0;
}

.cws-mcp-faq-answer > *:last-child {
	padding-bottom: 20px;
	margin-bottom: 0;
}

.cws-mcp-faq-answer p,
.cws-mcp-faq-answer ul,
.cws-mcp-faq-answer ol {
	padding: 0 20px;
	margin: 15px 0;
	line-height: 1.6;
	color: #50575e;
}

.cws-mcp-faq-answer ul,
.cws-mcp-faq-answer ol {
	padding-left: 45px;
}

.cws-mcp-faq-answer li {
	margin-bottom: 8px;
}

.cws-mcp-faq-answer strong {
	color: #1d2327;
	font-weight: 600;
}

.cws-mcp-faq-answer code {
	background: #f6f7f7;
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 13px;
	color: #2271b1;
}

.cws-mcp-faq-answer em {
	color: #646970;
	font-style: italic;
}

@media screen and (max-width: 782px) {
	.cws-mcp-faq-question {
		padding: 12px 15px;
		font-size: 14px;
	}

	.cws-mcp-faq-icon {
		width: 20px;
		height: 20px;
		font-size: 16px;
	}

	.cws-mcp-faq-answer p,
	.cws-mcp-faq-answer ul,
	.cws-mcp-faq-answer ol {
		padding: 0 15px;
		font-size: 14px;
	}

	.cws-mcp-faq-answer ul,
	.cws-mcp-faq-answer ol {
		padding-left: 35px;
	}
}

/* Profile Reminder Banner */
.cws-mcp-profile-reminder-banner {
	display: none;
	position: relative;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 20px 25px;
	margin: 20px 0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	animation: slideInDown 0.5s ease-out;
}

.cws-mcp-profile-reminder-banner.show {
	display: block;
}

.cws-mcp-profile-reminder-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.cws-mcp-profile-reminder-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	animation: pulse 2s ease-in-out infinite;
}

.cws-mcp-profile-reminder-text {
	flex: 1;
}

.cws-mcp-profile-reminder-text h3 {
	margin: 0 0 8px 0;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}

.cws-mcp-profile-reminder-text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
}

.cws-mcp-profile-reminder-actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cws-mcp-profile-reminder-btn {
	padding: 10px 20px;
	border: 2px solid #fff;
	background: #fff;
	color: #667eea;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
}

.cws-mcp-profile-reminder-btn:hover {
	background: transparent;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cws-mcp-profile-reminder-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.8);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.cws-mcp-profile-reminder-close:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

@media screen and (max-width: 782px) {
	.cws-mcp-profile-reminder-content {
		flex-direction: column;
		align-items: flex-start;
		padding-right: 30px;
	}

	.cws-mcp-profile-reminder-icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.cws-mcp-profile-reminder-actions {
		width: 100%;
		flex-direction: column;
	}

	.cws-mcp-profile-reminder-btn {
		width: 100%;
		text-align: center;
	}
}

/* WordPress Admin Menu Icon */
#adminmenu .toplevel_page_mountdev-ai-mcp-connector .wp-menu-image img {
	width: 20px;
	height: 20px;
	padding: 6px 0;
	opacity: 0.6;
	margin-top: 5px;
}

#adminmenu .toplevel_page_mountdev-ai-mcp-connector:hover .wp-menu-image img,
#adminmenu .toplevel_page_mountdev-ai-mcp-connector.current .wp-menu-image img {
	opacity: 1;
}

/* Admin Layout with Ad Sidebar */
.cws-mcp-admin-layout {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.cws-mcp-main-content {
	flex: 1;
	min-width: 0;
}

.cws-mcp-sidebar {
	width: 320px;
	flex-shrink: 0;
}

.cws-mcp-ads-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.cws-mcp-ad-item {
	border: 1px solid #e5e7eb;
	border-radius: 0.5rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	position: relative;
	background: #fff;
	transition: box-shadow 0.2s;
}

.cws-mcp-ad-item:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.cws-mcp-ad-item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cws-mcp-ad-item:hover img {
	transform: scale(1.06);
	filter: blur(2px);
}

.cws-mcp-ad-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.cws-mcp-ad-item:hover .cws-mcp-ad-overlay {
	opacity: 1;
}

.cws-mcp-view-details-btn {
	background: #fff;
	color: #1f2937;
	font-weight: 600;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	display: inline-block;
	transform: scale(0.95);
	transition: transform 0.2s, background-color 0.2s;
}

.cws-mcp-ad-item:hover .cws-mcp-view-details-btn {
	transform: scale(1);
}

.cws-mcp-view-details-btn:hover {
	background: #f3f4f6;
	color: #1f2937;
}

@media (max-width: 1200px) {
	.cws-mcp-admin-layout {
		flex-direction: column;
	}

	.cws-mcp-sidebar {
		width: 100%;
	}

	.cws-mcp-ads-sidebar {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 782px) {
	.cws-mcp-ads-sidebar {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   Premium Banner (slim, above tabs)
   ========================================================= */

.cws-mcp-premium-banner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 16px;
	margin-bottom: 0;
	background: linear-gradient(90deg, #fffbf0 0%, #fff8e6 60%, #fef3d0 100%);
	border-left: 3px solid #d97706;
	border-radius: 4px 4px 0 0;
	font-size: 13px;
	line-height: 1.4;
	flex-wrap: wrap;
}

.cws-mcp-premium-banner.is-hidden {
	display: none;
}

.cws-mcp-premium-banner-icon {
	color: #d97706;
	font-size: 15px;
	flex-shrink: 0;
	filter: drop-shadow(0 0 4px rgba(217, 119, 6, 0.4));
}

.cws-mcp-premium-banner-text {
	flex: 1;
	min-width: 0;
	color: #6b4c00;
}

.cws-mcp-premium-banner-text strong {
	color: #92400e;
}

.cws-mcp-premium-banner-cta {
	white-space: nowrap;
	font-weight: 700;
	color: #b45309;
	text-decoration: none;
	flex-shrink: 0;
	padding: 4px 12px;
	border: 1px solid #d97706;
	border-radius: 3px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	transition: background 0.15s, border-color 0.15s;
	font-size: 12px;
}

.cws-mcp-premium-banner-cta:hover {
	background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
	border-color: #b45309;
	color: #92400e;
}

.cws-mcp-premium-banner-close {
	background: none;
	border: none;
	cursor: pointer;
	color: #a16207;
	font-size: 18px;
	line-height: 1;
	padding: 0 2px;
	flex-shrink: 0;
	transition: color 0.15s;
	opacity: 0.6;
}

.cws-mcp-premium-banner-close:hover {
	color: #92400e;
	opacity: 1;
}

/* =========================================================
   Premium Card (right sidebar)
   ========================================================= */

.cws-mcp-premium-card {
	background: #fff;
	border: 1px solid #f0c060;
	border-radius: 0.5rem;
	box-shadow: 0 2px 8px rgba(217, 119, 6, 0.12), 0 1px 2px rgba(0, 0, 0, 0.04);
	overflow: hidden;
}

.cws-mcp-premium-card-header {
	background: linear-gradient(135deg, #ca672a 0%, #d97706 50%, #f59e0b 100%);
	padding: 16px 16px 14px;
	position: relative;
	overflow: hidden;
}

.cws-mcp-premium-card-header::after {
	content: "";
	position: absolute;
	top: -20px;
	right: -20px;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.cws-mcp-premium-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #92400e;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	padding: 2px 9px;
	border-radius: 20px;
	margin-bottom: 7px;
}

.cws-mcp-premium-card-header h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cws-mcp-premium-card-benefits {
	margin: 0;
	padding: 14px 16px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 9px;
	background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
}

.cws-mcp-premium-card-benefits li {
	font-size: 13px;
	color: #3c434a;
	padding-left: 20px;
	position: relative;
}

.cws-mcp-premium-card-benefits li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: #d97706;
	font-weight: 700;
}

.cws-mcp-premium-card-btn {
	display: block;
	margin: 0 16px 16px;
	padding: 10px 16px;
	text-align: center;
	background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 0 2px 4px rgba(217, 119, 6, 0.3);
	transition: background 0.15s, box-shadow 0.15s;
}

.cws-mcp-premium-card-btn:hover {
	background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
	box-shadow: 0 4px 8px rgba(217, 119, 6, 0.4);
	color: #fff;
}

@media (max-width: 1200px) {
	.cws-mcp-premium-card {
		grid-column: 1 / -1;
	}
}

/* =========================================================
   WooCommerce Promo Banner (Profiles Tab)
   ========================================================= */

.cws-mcp-woo-promo-banner {
	background: linear-gradient(135deg, #f3eef8 0%, #faf5ff 100%);
	border: 1px solid #c9a0dc;
	border-left: 4px solid #7f54b3;
	border-radius: 4px;
	padding: 14px 18px;
	margin-bottom: 20px;
	margin-top: 20px;
	box-shadow: 0 2px 4px rgba(127, 84, 179, 0.08);
}

.cws-mcp-woo-promo-content {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cws-mcp-woo-promo-icon {
	font-size: 24px;
	flex-shrink: 0;
	line-height: 1;
}

.cws-mcp-woo-promo-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cws-mcp-woo-promo-text strong {
	color: #7f54b3;
	font-size: 14px;
	font-weight: 600;
}

.cws-mcp-woo-promo-text span {
	color: #50575e;
	font-size: 13px;
	line-height: 1.5;
}

@media screen and (max-width: 782px) {
	.cws-mcp-woo-promo-banner {
		padding: 12px 14px;
	}

	.cws-mcp-woo-promo-content {
		gap: 10px;
	}

	.cws-mcp-woo-promo-icon {
		font-size: 20px;
	}

	.cws-mcp-woo-promo-text strong {
		font-size: 13px;
	}

	.cws-mcp-woo-promo-text span {
		font-size: 12px;
	}
}

/* =========================================================
   Yoast SEO Promo Banner
   ========================================================= */

.cws-mcp-yoast-promo-banner {
	background: linear-gradient(135deg, #fdf4f9 0%, #fef7fb 100%);
	border: 1px solid #d896b8;
	border-left: 4px solid #9d1e6b;
	border-radius: 4px;
	padding: 14px 18px;
	margin-bottom: 20px;
	margin-top: 20px;
	box-shadow: 0 2px 4px rgba(157, 30, 107, 0.08);
}

.cws-mcp-yoast-promo-content {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cws-mcp-yoast-promo-icon {
	font-size: 24px;
	flex-shrink: 0;
	line-height: 1;
}

.cws-mcp-yoast-promo-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cws-mcp-yoast-promo-text strong {
	color: #9d1e6b;
	font-size: 14px;
	font-weight: 600;
}

.cws-mcp-yoast-promo-text span {
	color: #50575e;
	font-size: 13px;
	line-height: 1.5;
}

@media screen and (max-width: 782px) {
	.cws-mcp-yoast-promo-banner {
		padding: 12px 14px;
	}

	.cws-mcp-yoast-promo-content {
		gap: 10px;
	}

	.cws-mcp-yoast-promo-icon {
		font-size: 20px;
	}

	.cws-mcp-yoast-promo-text strong {
		font-size: 13px;
	}

	.cws-mcp-yoast-promo-text span {
		font-size: 12px;
	}
}

/* =========================================================
   Rank Math SEO Promo Banner
   ========================================================= */

.cws-mcp-rankmath-promo-banner {
	background: linear-gradient(135deg, #f0fdf4 0%, #f7fef9 100%);
	border: 1px solid #86efac;
	border-left: 4px solid #059669;
	border-radius: 4px;
	padding: 14px 18px;
	margin-bottom: 20px;
	margin-top: 20px;
	box-shadow: 0 2px 4px rgba(5, 150, 105, 0.08);
}

.cws-mcp-rankmath-promo-content {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cws-mcp-rankmath-promo-icon {
	font-size: 24px;
	flex-shrink: 0;
	line-height: 1;
}

.cws-mcp-rankmath-promo-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cws-mcp-rankmath-promo-text strong {
	color: #059669;
	font-size: 14px;
	font-weight: 600;
}

.cws-mcp-rankmath-promo-text span {
	color: #50575e;
	font-size: 13px;
	line-height: 1.5;
}

@media screen and (max-width: 782px) {
	.cws-mcp-rankmath-promo-banner {
		padding: 12px 14px;
	}

	.cws-mcp-rankmath-promo-content {
		gap: 10px;
	}

	.cws-mcp-rankmath-promo-icon {
		font-size: 20px;
	}

	.cws-mcp-rankmath-promo-text strong {
		font-size: 13px;
	}

	.cws-mcp-rankmath-promo-text span {
		font-size: 12px;
	}
}

/* =========================================================
   Contact Form 7 Promo Banner
   ========================================================= */

.cws-mcp-cf7-promo-banner {
	background: linear-gradient(135deg, #eff6ff 0%, #f5f9ff 100%);
	border: 1px solid #93c5fd;
	border-left: 4px solid #2271b1;
	border-radius: 4px;
	padding: 14px 18px;
	margin-bottom: 16px;
	box-shadow: 0 2px 4px rgba(34, 113, 177, 0.08);
}

.cws-mcp-cf7-promo-content {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cws-mcp-cf7-promo-icon {
	font-size: 24px;
	flex-shrink: 0;
	line-height: 1;
}

.cws-mcp-cf7-promo-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cws-mcp-cf7-promo-text strong {
	color: #2271b1;
	font-size: 14px;
	font-weight: 600;
}

.cws-mcp-cf7-promo-text span {
	color: #50575e;
	font-size: 13px;
	line-height: 1.5;
}

@media screen and (max-width: 782px) {
	.cws-mcp-cf7-promo-banner {
		padding: 12px 14px;
	}

	.cws-mcp-cf7-promo-content {
		gap: 10px;
	}

	.cws-mcp-cf7-promo-icon {
		font-size: 20px;
	}

	.cws-mcp-cf7-promo-text strong {
		font-size: 13px;
	}

	.cws-mcp-cf7-promo-text span {
		font-size: 12px;
	}
}

.cws-mcp-elementor-promo-banner {
	background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
	border: 1px solid #fca5a5;
	border-left: 4px solid #e03a3e;
	border-radius: 4px;
	padding: 14px 18px;
	margin-bottom: 16px;
	box-shadow: 0 2px 4px rgba(224, 58, 62, 0.08);
}

.cws-mcp-jetpack-promo-banner {
	background: linear-gradient(135deg, #f0fafe 0%, #f5fbff 100%);
	border: 1px solid #7dd3f0;
	border-left: 4px solid #00a0d2;
	border-radius: 4px;
	padding: 14px 18px;
	margin-bottom: 16px;
	box-shadow: 0 2px 4px rgba(0, 160, 210, 0.08);
}

.cws-mcp-elementor-promo-content {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cws-mcp-elementor-promo-icon {
	font-size: 24px;
	flex-shrink: 0;
	line-height: 1;
}

.cws-mcp-elementor-promo-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cws-mcp-elementor-promo-text strong {
	color: #e03a3e;
	font-size: 14px;
	font-weight: 600;
}

.cws-mcp-elementor-promo-text span {
	color: #50575e;
	font-size: 13px;
	line-height: 1.5;
}

@media screen and (max-width: 782px) {
	.cws-mcp-elementor-promo-banner {
		padding: 12px 14px;
	}

	.cws-mcp-elementor-promo-content {
		gap: 10px;
	}

	.cws-mcp-elementor-promo-icon {
		font-size: 20px;
	}

	.cws-mcp-elementor-promo-text strong {
		font-size: 13px;
	}

	.cws-mcp-elementor-promo-text span {
		font-size: 12px;
	}
}

.cws-mcp-jetpack-promo-content {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cws-mcp-jetpack-promo-icon {
	font-size: 24px;
	flex-shrink: 0;
	line-height: 1;
}

.cws-mcp-jetpack-promo-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cws-mcp-jetpack-promo-text strong {
	color: #00a0d2;
	font-size: 14px;
	font-weight: 600;
}

.cws-mcp-jetpack-promo-text span {
	color: #50575e;
	font-size: 13px;
	line-height: 1.5;
}

@media screen and (max-width: 782px) {
	.cws-mcp-jetpack-promo-banner {
		padding: 12px 14px;
	}

	.cws-mcp-jetpack-promo-content {
		gap: 10px;
	}

	.cws-mcp-jetpack-promo-icon {
		font-size: 20px;
	}

	.cws-mcp-jetpack-promo-text strong {
		font-size: 13px;
	}

	.cws-mcp-jetpack-promo-text span {
		font-size: 12px;
	}
}
