.mb-calendar-wrapper {
	margin: 1.5em 0;
}

.mb-calendar-label {
	font-weight: 600;
	margin-bottom: 0.5em;
}

.mb-calendar {
	max-width: 320px;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 0.75em;
	background: #fff;
}

.mb-calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5em;
}

.mb-calendar-title {
	font-weight: 600;
}

.mb-calendar-nav {
	background: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 0.2em 0.6em;
	cursor: pointer;
}

.mb-calendar-nav:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.mb-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	text-align: center;
}

.mb-calendar-weekday {
	font-size: 0.8em;
	font-weight: 600;
	color: #777;
	padding: 0.2em 0;
}

.mb-day {
	padding: 0.4em 0;
	font-size: 0.9em;
	border-radius: 3px;
}

.mb-day--empty {
	visibility: hidden;
}

.mb-day--disabled {
	color: #ccc;
}

.mb-day--available {
	background: #f2f7f2;
	border: 1px solid #8bc48b;
	color: #2e6b2e;
	cursor: pointer;
}

.mb-day--available:hover {
	background: #e2f0e2;
}

.mb-day--selected {
	background: #2e6b2e;
	border-color: #2e6b2e;
	color: #fff;
}

.mb-calendar-selected-summary {
	margin-top: 0.6em;
	font-size: 0.9em;
	font-style: italic;
}

.mb-calendar-toggle {
	margin-top: 0.6em;
	background: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 0.3em 0.8em;
	cursor: pointer;
	font-size: 0.9em;
}

.mb-calendar-toggle:hover {
	background: #f2f7f2;
}
