.csc-booking-wrapper {
	display: flex;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	border: 1px solid #ddd;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-width: 900px;
	margin: 20px auto;
	background: #fff;
	min-height: 500px;
}

/* Sidebar */
.csc-sidebar {
	width: 300px;
	background-color: #333;
	color: #fff;
	display: flex;
	flex-direction: column;
	padding: 20px 0;
	flex-shrink: 0;
}

.csc-step-item {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	cursor: default;
	border-left: 4px solid transparent;
	transition: all 0.3s;
}

.csc-step-item.active {
	background-color: #444;
	border-left-color: #f37021;
}



.csc-step-icon {
	margin-right: 15px;
	color: #888;
	display: flex;
	align-items: center;
}

.csc-step-item.active .csc-step-icon,
.csc-step-item.completed .csc-step-icon {
	color: #fff;
}

.csc-step-info {
	flex-grow: 1;
}

.csc-step-title {
	display: block;
	font-weight: bold;
	font-size: 14px;
}

.csc-step-desc {
	display: block;
	font-size: 12px;
	color: #aaa;
	margin-top: 2px;
}

.csc-step-status {
	width: 20px;
	/* Space for checkmark */
}

.csc-step-item.completed .csc-step-status::after {
	content: '✓';
	color: #f37021;
	font-weight: bold;
	font-size: 16px;
	border: 2px solid #f37021;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.csc-sidebar-footer {
	margin-top: auto;
	padding: 20px;
	border-top: 1px solid #444;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}

/* Main Content */
.csc-main-content {
	flex-grow: 1;
	padding: 30px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.csc-main-content h2 {
	color: #f37021;
	margin: 0 0 10px 0;
	font-size: 20px;
	text-transform: uppercase;
}

.csc-main-content hr {
	border: 0;
	border-top: 1px solid #eee;
	margin-bottom: 20px;
}

.csc-section-step {
	display: none;
}

.csc-section-step.active {
	display: block;
	animation: fadeIn 0.4s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Form Elements */
.csc-form-group {
	margin-bottom: 20px;
}

.csc-form-row {
	margin-bottom: 15px;
}

.csc-section-step label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
}

.csc-section-step label.required::before {
	content: "* ";
	color: red;
}

.csc-input {
	width: 100%;
	padding: 12px;
	background-color: #f4f4f4;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
}

.csc-input:focus {
	border-color: #aaa;
	outline: none;
}

/* Slots */
.csc-slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.csc-slot {
	padding: 10px;
	border: 1px solid #ddd;
	text-align: center;
	cursor: pointer;
	border-radius: 4px;
	background: #fff;
	transition: all 0.2s;
}

.csc-slot:hover {
	border-color: #f37021;
}

.csc-slot.selected {
	background: #f37021;
	color: #fff;
	border-color: #f37021;
}

/* Footer / Buttons */
.csc-footer-actions {
	margin-top: auto;
	padding-top: 20px;
	text-align: right;
	border-top: 1px solid #eee;
}

.csc-btn-primary {
	background-color: #f37021;
	color: #fff;
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

.csc-btn-primary:hover {
	background-color: #d9631d;
}

.csc-btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Messages */
.csc-hidden {
	display: none;
}

#csc-response-message {
	margin-bottom: 15px;
}

#csc-response-message p {
	padding: 10px;
	border-radius: 4px;
	margin: 0;
}

.success p {
	background-color: #d4edda;
	color: #155724;
}

.error p {
	background-color: #f8d7da;
	color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
	.csc-booking-wrapper {
		flex-direction: column;
	}

	.csc-sidebar {
		width: 100%;
		flex-direction: row;
		overflow-x: auto;
		padding: 0;
	}

	.csc-step-item {
		flex: 0 0 auto;
		padding: 10px;
		border-right: 1px solid #444;
		border-left: none;
	}

	.csc-step-item.active {
		border-bottom: 4px solid #f37021;
		border-left-color: transparent;
	}

	.csc-sidebar-footer,
	.csc-step-status,
	.csc-step-desc {
		display: none;
	}

	.csc-step-info {
		text-align: center;
	}

	.csc-step-icon {
		margin-right: 5px;
	}
}