/**
 * Simple RSVP - Setup Wizard Styles
 */

body.srsvp-wizard-page {
	background: #F0F0F1;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.srsvp-wizard {
	max-width: 640px;
	margin: 40px auto;
	padding: 0 20px;
}

.srsvp-wizard-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.srsvp-wizard-header {
	background: linear-gradient(135deg, #6C63FF, #8B5CF6);
	padding: 32px;
	text-align: center;
	color: white;
}

.srsvp-wizard-header h1 {
	margin: 0;
	font-size: 1.5em;
	font-weight: 700;
}

.srsvp-wizard-header p {
	margin: 8px 0 0;
	opacity: 0.9;
	font-size: 0.95em;
}

/* Steps indicator */
.srsvp-wizard-steps {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 20px 24px;
	border-bottom: 1px solid #E5E7EB;
}

.srsvp-wizard-step {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.82em;
	color: #9CA3AF;
	font-weight: 500;
}

.srsvp-wizard-step.active {
	color: #6C63FF;
	font-weight: 600;
}

.srsvp-wizard-step.done {
	color: #10B981;
}

.srsvp-wizard-step .step-num {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #E5E7EB;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85em;
	font-weight: 700;
}

.srsvp-wizard-step.active .step-num {
	background: #6C63FF;
	color: white;
}

.srsvp-wizard-step.done .step-num {
	background: #10B981;
	color: white;
}

.step-arrow {
	color: #D1D5DB;
}

/* Body & Footer */
.srsvp-wizard-body {
	padding: 32px;
}

.srsvp-wizard-footer {
	padding: 16px 32px;
	border-top: 1px solid #E5E7EB;
	display: flex;
	justify-content: space-between;
	background: #F9FAFB;
}

/* Steps */
.wizard-step {
	display: none;
}

.wizard-step.active {
	display: block;
}

/* Form fields */
.wizard-field {
	margin-bottom: 20px;
}

.wizard-field label {
	display: block;
	font-weight: 600;
	font-size: 0.88em;
	margin-bottom: 6px;
	color: #1F2937;
}

.wizard-field input,
.wizard-field textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid #E5E7EB;
	border-radius: 10px;
	font-size: 0.9em;
	font-family: inherit;
	background: #F9FAFB;
	box-sizing: border-box;
}

.wizard-field input:focus,
.wizard-field textarea:focus {
	outline: none;
	border-color: #6C63FF;
	box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
}

/* Event type grid */
.wizard-type-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.wizard-type-btn {
	padding: 14px 8px;
	border: 2px solid #E5E7EB;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	background: white;
	transition: all 0.2s;
}

.wizard-type-btn:hover {
	border-color: #8B83FF;
}

.wizard-type-btn.selected {
	border-color: #6C63FF;
	background: #F5F3FF;
}

.wizard-type-btn .type-icon {
	font-size: 1.5em;
}

.wizard-type-btn .type-label {
	font-size: 0.75em;
	font-weight: 600;
	margin-top: 4px;
}

/* Row layout */
.wizard-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

/* Buttons */
.wizard-btn {
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 0.9em;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid #E5E7EB;
	font-family: inherit;
	transition: all 0.15s;
	text-decoration: none;
	display: inline-block;
}

.wizard-btn-primary {
	background: #6C63FF;
	color: white;
	border-color: #6C63FF;
}

.wizard-btn-primary:hover {
	background: #5A52D5;
}

.wizard-btn-secondary {
	background: white;
	color: #1F2937;
}

.wizard-btn-skip {
	background: none;
	border: none;
	color: #6B7280;
	font-size: 0.85em;
	cursor: pointer;
	text-decoration: underline;
}

/* Success state */
.wizard-success {
	text-align: center;
	padding: 20px 0;
}

.wizard-success-icon {
	font-size: 3em;
	margin-bottom: 12px;
}

.wizard-success h2 {
	margin: 0 0 8px;
	font-size: 1.3em;
	color: #1F2937;
}

.wizard-success p {
	color: #6B7280;
	margin: 0 0 20px;
}

.wizard-shortcode {
	background: #F5F3FF;
	padding: 12px 16px;
	border-radius: 8px;
	font-family: monospace;
	font-size: 0.9em;
	color: #6C63FF;
	cursor: pointer;
	display: inline-block;
	border: 1px solid #DDD6FE;
}

.wizard-shortcode:hover {
	background: #EDE9FE;
}
