<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">	.vanilla-calendar {
		width: 284px;
		margin: 0 auto 10px auto;
		overflow: hidden;
	}

	.vanilla-calendar .vanilla-calendar-btn {
		-moz-user-select: none;
		-ms-user-select: none;
		-webkit-appearance: button;
		background: none;
		border: 0;
		color: inherit;
		cursor: pointer;
		font: inherit;
		line-height: normal;
		min-width: 27px;
		outline: none;
		overflow: visible;
		padding: 2px 0 0 0;
		text-align: center;
	}

	.vanilla-calendar .vanilla-calendar-btn svg {
		width: auto;
		height: 18px;
	}

	.vanilla-calendar .vanilla-calendar-header {
		align-items: center;
		display: flex;
		padding: 10px 0;
	}

	.vanilla-calendar .vanilla-calendar-header__label {
		font-family: 'Roboto';
		font-style: normal;
		font-weight: 700;
		font-size: 16px;
		line-height: 20px;
		text-align: center;
		width: 100%;
	}

	.vanilla-calendar .vanilla-calendar-week {
		display: flex;
		flex-wrap: wrap;
	}

	.vanilla-calendar .vanilla-calendar-week span {
		color: #fff;
		flex-direction: column;
		flex: 0 0 14.28%;
		font-family: 'Roboto';
		font-size: 12px;
		font-weight: 400;
		font-style: normal;
		max-width: 14.28%;
		padding: 10px 0px;
		text-align: center;
	}

	.vanilla-calendar .vanilla-calendar-body {
		display: flex;
		flex-wrap: wrap;
		border-left: #a2a2a2 1px solid;
		border-top: #a2a2a2 1px solid;
	}

	.vanilla-calendar .vanilla-calendar-date {
		align-items: center;
		display: flex;
		flex-direction: column;
		flex: 0 0 14.28%;
		max-width: 14.28%;
		padding: 6px 0;
		font-size: 12px;
		line-height: 28px;
		border-right: #a2a2a2 1px solid;
		border-bottom: #a2a2a2 1px solid;
	}

	.vanilla-calendar .vanilla-calendar-date--active {
		background-color: rgb(0, 153, 238);
		color: #000;
		cursor: pointer;
	}

	.vanilla-calendar .vanilla-calendar-date--today {
		border: 3px solid black;
	}

	.vanilla-calendar .vanilla-calendar-date--selected {
		background-color: green;
		color: #fff;
	}

	.vanilla-calendar .vanilla-calendar-date--disabled {
		border-radius: 0;
		cursor: not-allowed;
		background-color: #E7E9ED;
	}

	.vanilla-calendar .vanilla-calendar-date--disabled span {
		color: #747474;
	}</pre></body></html>