/* =============================================================
   Repoevo — settings.css
   ============================================================= */

/* -------------------------------------------------------------
   Wrapper
   ------------------------------------------------------------- */

.repoevo-settings-wrap {
	max-width: 100%;
	margin-top: 20px;
}

/* -------------------------------------------------------------
   Hero Banner
   ------------------------------------------------------------- */

.repoevo-onboarding-hero {
	background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
	border-radius: 12px;
	padding: 40px 48px;
	margin-bottom: 28px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 32px;
}

.repoevo-onboarding-hero .repoevo-hero-icon {
	font-size: 56px;
	line-height: 1;
	flex-shrink: 0;
}

.repoevo-onboarding-hero h2 {
	color: #fff;
	font-size: 24px;
	margin: 0 0 8px;
	font-weight: 700;
}

.repoevo-onboarding-hero p {
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

/* -------------------------------------------------------------
   Feature List
   ------------------------------------------------------------- */

.repoevo-feature-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
}

.repoevo-feature-list li {
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.repoevo-feature-list li::before {
	content: '✓';
	color: #86efac;
	font-weight: 700;
}

/* -------------------------------------------------------------
   Schritte
   ------------------------------------------------------------- */

.repoevo-steps {
	display: flex;
	gap: 16px;
	margin-bottom: 28px;
}

.repoevo-step {
	flex: 1;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
}

.repoevo-step.active {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.repoevo-step.done {
	border-color: #16a34a;
	background: #f0fdf4;
}

.repoevo-step-number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #e2e8f0;
	color: #64748b;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
}

.repoevo-step.active .repoevo-step-number {
	background: #2563eb;
	color: #fff;
}

.repoevo-step.done .repoevo-step-number {
	background: #16a34a;
	color: #fff;
}

.repoevo-step h4 {
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 600;
	color: #1e293b;
}

.repoevo-step p {
	margin: 0;
	font-size: 12px;
	color: #64748b;
}

/* -------------------------------------------------------------
   API Card
   ------------------------------------------------------------- */

.repoevo-api-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 28px 32px;
	margin-bottom: 24px;
}

.repoevo-api-card h3 {
	margin: 0 0 6px;
	font-size: 16px;
	color: #1e293b;
}

.repoevo-api-card .repoevo-card-desc {
	color: #64748b;
	font-size: 13px;
	margin: 0 0 20px;
}

/* -------------------------------------------------------------
   Verbunden-Status
   ------------------------------------------------------------- */

.repoevo-connected-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	padding: 10px 16px;
	margin-bottom: 20px;
	color: #16a34a;
	font-weight: 600;
	font-size: 14px;
}

.repoevo-connected-badge span {
	font-size: 18px;
}

.repoevo-plan-badge {
	display: inline-block;
	background: #dbeafe;
	color: #1d4ed8;
	border-radius: 4px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-left: 8px;
}

.repoevo-plan-badge.pro {
	background: #fef3c7;
	color: #92400e;
}

.repoevo-plan-badge.business {
	background: #ede9fe;
	color: #5b21b6;
}

/* -------------------------------------------------------------
   API Key Anzeige
   ------------------------------------------------------------- */

.repoevo-api-key-display {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.repoevo-api-key-display code {
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 6px 12px;
	font-size: 12px;
	color: #475569;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */

.repoevo-connect-btn {
	background: #2563eb !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 10px 24px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	cursor: pointer;
	transition: background 0.15s;
}

.repoevo-connect-btn:hover {
	background: #1d4ed8 !important;
}

.repoevo-disconnect-btn {
	color: #dc2626 !important;
	border-color: #fca5a5 !important;
}

/* -------------------------------------------------------------
   Einstellungs-Sektionen
   ------------------------------------------------------------- */

.repoevo-settings-section {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 24px 32px;
	margin-bottom: 24px;
}

.repoevo-settings-section h3 {
	margin: 0 0 4px;
	font-size: 15px;
	color: #1e293b;
}

.repoevo-settings-section .repoevo-section-desc {
	color: #64748b;
	font-size: 13px;
	margin: 0 0 16px;
}

a.repoevo-step {
	cursor: pointer;
	color: inherit;
}

a.repoevo-step:hover {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
	text-decoration: none;
	color: inherit;
}
   ------------------------------------------------------------- */

.repoevo-license-url-hint {
	margin: 12px 0 0;
	font-size: 13px;
	color: #64748b;
}

.repoevo-license-url-hint strong {
	color: #1e293b;
	font-weight: 600;
}

.repoevo-license-url-hint--connected {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 13px;
	margin-bottom: 16px;
}
