/* Unified Appointment Form Styles (same as index) */
.appointment-form-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.appointment-form-container {
	background: #fff;
	border-radius: 12px;
	max-width: 800px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	position: relative;
}

.appointment-form-header {
	background: linear-gradient(135deg, #8B5CF6, #7C3AED);
	color: white;
	padding: 20px;
	border-radius: 12px 12px 0 0;
	text-align: center;
}

.appointment-form-header h2 {
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: 600;
}

.appointment-form-header p {
	margin: 0;
	opacity: 0.9;
	font-size: 14px;
}

.appointment-form-content {
	padding: 30px;
}

.form-step {
	display: none;
}

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

.step-indicator {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.step-item {
	display: flex;
	align-items: center;
	margin: 0 10px;
}

.step-number {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #ecf0f1;
	color: #7f8c8d;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	margin-right: 8px;
}

.step-number.active {
	background: #8B5CF6;
	color: #fff;
}

.step-number.completed {
	background: #7C3AED;
	color: #fff;
}

.step-title {
	font-size: 14px;
	color: #34495e;
}

.glass-type-selection,
.damage-visual-selection {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.glass-type-option,
.damage-visual-option {
	border: 2px solid #ecf0f1;
	border-radius: 10px;
	padding: 12px;
	cursor: pointer;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	gap: 12px;
}

.glass-type-option.selected,
.damage-visual-option.selected {
	border-color: #8B5CF6;
	background: #f8f5ff;
}

.glass-image,
.damage-image {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.glass-label,
.damage-label {
	font-size: 14px;
	color: #34495e;
}

.form-group {
	margin-top: 16px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.checkbox-group {
	margin-top: 16px;
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.form-navigation {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

.close-form {
	background: transparent;
	border: 0;
	color: #f96822;
	font-size: 85px;
	line-height: 1;
	cursor: pointer;
	position: absolute;
	right: 12px;
	top: 12px;
}

@media (max-width: 768px) {
	.appointment-form-content {
		padding: 20px;
	}

	.glass-type-selection,
	.damage-visual-selection {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}