.cal-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 300px;
	padding: var(--pad);
	background: var(--black);
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
	z-index: 1600;
}

.cal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
}

.cal-x {
	display: none;
}

.cal-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--white);
	white-space: nowrap;
}

.cal-nav {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.cal-btn {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	color: var(--white);
	font-size: 18px;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

.cal-btn:hover,
.cal-btn:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.08);
}

.cal-btn:disabled {
	color: rgba(255, 255, 255, 0.24);
	cursor: default;
	background: transparent;
}

.cal-week {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: var(--gap);
	margin: var(--pad) 0;
}

.cal-week div {
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--white);
}

.cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: var(--gap);
}

.cal-day {
	appearance: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 35px;
	height: 35px;
	padding: 0;
	margin: 0;
	justify-self: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

.cal-day:hover,
.cal-day:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.08);
}

.cal-day.is-other {
	opacity: 0.35;
}

.cal-day.is-disabled {
	opacity: 0.34;
	cursor: default;
}

.cal-day.is-disabled:hover,
.cal-day.is-disabled:focus,
.cal-day.is-other:hover,
.cal-day.is-other:focus {
	background: transparent;
}

.cal-day.is-available {
	color: var(--white);
}

.cal-day.is-selected {
	background: var(--white);
	color: var(--black);
}

.cal-day.is-today:not(.is-selected) {
	background: rgba(255, 255, 255, 0.16);
	color: var(--white);
}