.datepicker-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
}

.week-days div {
	padding: 8px 0;
	font-size: 0.85rem;
	font-weight: 600;
}

.weekend {
	color: #bc0927;
	background-color: #fff5f5;
}

.datepicker-grid .day-cell {
	padding: 5px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-muted-day {
	color: #ccc;
	font-size: 0.9rem;
}

.today-highlight {
	background-color: #0d6efd !important;
	color: white !important;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.btn-day {
	width: 100%;
	height: 100%;
	border: none;
	background: transparent;
	cursor: pointer;
	border-radius: 4px;
}

.btn-day:hover {
	background-color: #f0f0f0;
}