
.aica-onboarding {
	max-width: 800px;
	margin: 50px auto;
}

.aica-onboarding-header {
	text-align: center;
	margin-bottom: 40px;
}

.aica-onboarding-logo {
	font-size: 48px;
	margin-bottom: 20px;
}

.aica-onboarding-steps {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 40px;
}

.aica-step {
	display: none;
}

.aica-step.active {
	display: block;
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.aica-step-indicator {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	gap: 10px;
}

.aica-step-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	transition: all 0.3s ease;
}

.aica-step-dot.active {
	background: #0066FF;
	transform: scale(1.2);
}

.aica-step-dot.completed {
	background: #10B981;
}

.aica-step-content {
	min-height: 300px;
}

.aica-step-title {
	font-size: 24px;
	margin-bottom: 20px;
}

.aica-step-description {
	color: #666;
	margin-bottom: 30px;
	line-height: 1.6;
}

.aica-step-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.aica-provider-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin: 20px 0;
}

.aica-provider-card {
	border: 2px solid #ddd;
	padding: 20px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.aica-provider-card:hover {
	border-color: #0066FF;
	background: #f8f9ff;
}

.aica-provider-card.selected {
	border-color: #0066FF;
	background: #f0f5ff;
}

.aica-provider-name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.aica-provider-desc {
	font-size: 12px;
	color: #666;
}

.aica-feature-list {
	list-style: none;
	padding: 0;
}

.aica-feature-list li {
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
}

.aica-feature-list li:before {
	content: "✓";
	color: #10B981;
	font-weight: bold;
	margin-right: 10px;
	font-size: 18px;
}
