.calendar {
	width: 100%;
	max-width: 400px;
	margin: 40px auto;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.calendar-header button {
	background-color: #4caf50;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
}

.calendar-header button:hover {
	background-color: #3e8e41;
}

.calendar-body {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
}

.calendar-body .day {
	text-align: center;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 10px;
	cursor: pointer;
}

.calendar-body .day.disabled {
	background-color: #f0f0f0;
	color: #ccc;
	cursor: not-allowed;
}

.calendar-body .day.blocked {
	background-color: #ffcccc;
	color: #ff0000;
}
.day.highlighted {
	background-color: green;
	color: white;
}
