* {
	color: #000;
}

body {
	background-color: #f8f9fa;
	color: #1a1f36;
	background-image: none;
}

.navbar {
	background-color: rgb(15, 23, 42);
}


.container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 8rem 1rem;
	text-align: center;
}

.title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.title span {
	color: #3366ff;
}

.subtitle {
	color: #616774;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.scheduling-container {
	display: flex;
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
	flex: 1;
}

.calendar-section {
	flex: 1;
}

.form-group {
	margin-bottom: 1rem;
	text-align: left;
}

.form-control {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 0.9rem;
}

.selected-datetime {
	background-color: #f8f9fa;
	padding: 0.5rem;
	border-radius: 4px;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #616774;
}

.calendar {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 1rem;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.5rem;
}

.calendar-day {
	padding: 0.5rem;
	text-align: center;
	cursor: pointer;
	border-radius: 24px;
}

.calendar-header .btn {
	background-color: transparent;
	border: 0;
	font-size: 22px;
	font-weight: 100;
	color: rgb(107 114 128/var(--tw-text-opacity, 1));
}

.calendar-day:hover:not(.weekend):not(.header) {
	background-color: #f0f0f0;
}

.calendar-day.active {
	background-color: #3366ff;
	color: white;


}

.calendar-day.weekend {
	color: #ccc;
	cursor: not-allowed;
}

.calendar-day.header {
	font-weight: 100;
	color: rgb(107 114 128/var(--tw-text-opacity, 1));
	cursor: default;
}

.time-slots {
	margin-top: 1rem;
	max-height: 200px;
	overflow-y: auto;
}

.time-slot {
	padding: 0.5rem;
	margin: 0.25rem 0;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
}

.time-slot:hover {
	background-color: #f0f0f0;
}

.time-slot.active {
	background-color: #3366ff;
	color: white;
}

/* Previous styles remain the same */
.calendar-day.past {
	color: #ccc;
	cursor: not-allowed;
}

.calendar-day.past:hover {
	background-color: #f8f9fa;
}

.btnsArrows {
	display: flex;
	gap: 2rem;
}