.cs-calendar {
	box-sizing: border-box;
	width: 100%;
	max-width: 410px;
	padding: 32px;
	margin: 0 auto;
	font-family: inherit;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(45, 55, 72, 0.12);
	color: #2d3748;
}

.cs-calendar *,
.cs-calendar *::before,
.cs-calendar *::after {
	box-sizing: border-box;
}

.cs-calendar .cs-calendar__header {
	display: grid;
	grid-template-columns: 40px 1fr 40px;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
}

.cs-calendar .cs-calendar__title {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #6cbfc4;
}

.cs-calendar .cs-calendar__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	color: #2d3748;
	background: transparent;
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease;
	appearance: none;
}

.cs-calendar .cs-calendar__nav:hover {
	color: #6cbfc4;
	background-color: rgba(108, 191, 196, 0.1);
}

.cs-calendar .cs-calendar__nav:focus-visible {
	outline: 2px solid #6cbfc4;
	outline-offset: 2px;
}

.cs-calendar .cs-calendar__weekdays,
.cs-calendar .cs-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: center;
	text-align: center;
}

.cs-calendar .cs-calendar__weekdays {
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	color: #2d3748;
}

.cs-calendar .cs-calendar__grid {
	row-gap: 8px;
}

.cs-calendar .cs-calendar__day {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	width: 38px;
	height: 38px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	color: rgba(45, 55, 72, 0.8);
	border-radius: 50%;
}

.cs-calendar .cs-calendar__day--today {
	font-weight: 600;
	color: #ffffff;
	background: #6cbfc4;
}

.cs-calendar .cs-calendar__day--empty {
	color: transparent;
}

@media (max-width: 420px) {
	.cs-calendar {
		padding: 24px 18px;
		border-radius: 14px;
	}

	.cs-calendar .cs-calendar__header {
		margin-bottom: 22px;
	}

	.cs-calendar .cs-calendar__day {
		width: 34px;
		height: 34px;
	}
}

