/**
 * Shortcode Control — Start Here Wizard Styles
 * 
 * Styles for the welcome/onboarding wizard page.
 */

.scc-start-here-wrapper {
	background: #f5f5f5;
	padding: 20px 0;
	margin: 0;
}

.scc-start-here-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

/* Header Section */
.scc-start-here-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 40px;
	border-radius: 8px;
	margin-bottom: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.scc-header-content h1 {
	margin: 0 0 10px 0;
	font-size: 32px;
	line-height: 1.3;
	color: #fff;
}

.scc-tagline {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.95;
}

/* Stats Section */
.scc-stats-section {
	margin-bottom: 40px;
}

.scc-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.scc-stat-card {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	border-left: 4px solid #667eea;
}

.scc-stat-active {
	border-left-color: #10b981;
}

.scc-stat-disabled {
	border-left-color: #f59e0b;
}

.scc-stat-number {
	font-size: 36px;
	font-weight: bold;
	color: #1f2937;
	margin-bottom: 8px;
}

.scc-stat-label {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.scc-stats-section h2 {
	margin: 0 0 12px 0;
	color: #1f2937;
	font-size: 18px;
	font-weight: 600;
}

.scc-stats-section .scc-stats-grid {
	margin-bottom: 24px;
}

/* Scan prompt — shown when no scan has been run yet */
.scc-scan-prompt {
	margin: 0 0 12px 0;
	padding: 10px 14px;
	background: #fefce8;
	border-left: 3px solid #f59e0b;
	border-radius: 4px;
	font-size: 13px;
	color: #78350f;
}

.scc-scan-prompt a {
	margin-left: 6px;
	font-weight: 600;
	color: #d97706;
}

/* Orphaned stat card */
.scc-stat-orphaned {
	border-left-color: #9ca3af;
}

/* Orange alert when orphaned count > 0 */
.scc-stat-orphaned--alert {
	border-left-color: #ef4444;
	background: #fff5f5;
}

.scc-stat-orphaned--alert .scc-stat-number {
	color: #dc2626;
}

/* Inline "View →" link inside stat label */
.scc-stat-action-link {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #667eea;
	text-decoration: none;
	font-weight: 500;
}

.scc-stat-action-link:hover {
	text-decoration: underline;
}

/* Modules Section */
.scc-modules-section {
	margin-bottom: 40px;
}

.scc-modules-section h2 {
	margin-bottom: 25px;
	color: #1f2937;
	font-size: 24px;
}

.scc-module-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
	border-left: 4px solid #667eea;
	transition: box-shadow 0.2s ease;
}

.scc-module-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scc-module-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
}

.scc-module-header h3 {
	margin: 0;
	color: #1f2937;
	font-size: 18px;
}

.scc-module-icon {
	font-size: 28px;
}

.scc-module-body {
	padding: 20px;
}

.scc-module-body > p {
	margin: 0 0 15px 0;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.6;
}

.scc-module-features {
	list-style: none;
	margin: 15px 0;
	padding: 0;
}

.scc-module-features li {
	padding: 8px 0 8px 25px;
	position: relative;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.6;
}

.scc-module-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
}

.scc-module-actions {
	margin-top: 15px;
}

.scc-module-note {
	padding: 12px 15px;
	background: #f0f9ff;
	border-radius: 4px;
	font-size: 13px;
	color: #0c4a6e;
	/*border-left: 3px solid #0284c7;*/
}

.scc-module-note strong {
	display: block;
	margin-bottom: 4px;
}

/* Info Section */
.scc-info-section {
	margin-bottom: 40px;
}

.scc-info-section h2 {
	margin-bottom: 25px;
	color: #1f2937;
	font-size: 24px;
}

.scc-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.scc-info-card {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.scc-info-card h4 {
	margin: 0 0 10px 0;
	color: #1f2937;
	font-size: 15px;
}

.scc-info-card p {
	margin: 0;
	color: #4b5563;
	font-size: 13px;
	line-height: 1.6;
}

/* Next Steps Section */
.scc-next-steps-section {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.scc-next-steps-section h2 {
	margin-top: 0;
	margin-bottom: 25px;
	color: #1f2937;
	font-size: 24px;
}

.scc-next-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.scc-step {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.scc-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #667eea;
	color: #fff;
	border-radius: 50%;
	font-weight: bold;
	font-size: 16px;
	flex-shrink: 0;
}

.scc-step-content h4 {
	margin: 0 0 8px 0;
	color: #1f2937;
	font-size: 15px;
}

.scc-step-content p {
	margin: 0 0 10px 0;
	color: #4b5563;
	font-size: 13px;
	line-height: 1.6;
}

/* Buttons */
.scc-button {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.2s ease;
}

.scc-button-primary {
	background: #667eea;
	color: #fff;
}

.scc-button-primary:hover {
	background: #5568d3;
	text-decoration: none;
}

.scc-link {
	color: #667eea;
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
}

.scc-link:hover {
	text-decoration: underline;
	color: #5568d3;
}

/* Responsive */
@media (max-width: 768px) {
	.scc-start-here-container {
		padding: 15px;
	}

	.scc-start-here-header {
		padding: 25px;
	}

	.scc-header-content h1 {
		font-size: 24px;
	}

	.scc-stats-grid,
	.scc-info-grid,
	.scc-next-steps {
		grid-template-columns: 1fr;
	}

	.scc-module-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.scc-module-icon {
		align-self: flex-start;
	}
}
