@import url('https://fonts.googleapis.com/css2?family=Sora&display=swap');

body {
	font-family: Sora, sans-serif;
	font-size: clamp(11px, 1.5vw, 22px);
	padding-left: 3vw;
	background: linear-gradient(178deg, #FFF -0.28%, #9ED8BC 99.85%);
	margin: 0;
}

.branding {
	position: fixed;
	max-width: 100%;
	bottom: -7px;
	right: 0;
}
.branding svg {
	width: 100%;
	height: auto;
}

#send-schedule {
	background: none;
	border: none;
	width: 2rem;
	height: 2rem;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	display: block;
}
#send-schedule svg {
	width: 100%;
	height: auto;
	fill: #05884D;
}
input[type="checkbox"] {
	appearance: none;
	background-color: #fff;
	margin: 0;
	font: inherit;
	color: #05884D;
	width: 1.15em;
	height: 1.15em;
	border: 0.15em solid currentColor;
	border-radius: 0.15em;
	transform: translateY(-0.075em);
	display: grid;
	place-content: center;
}

input[type="checkbox"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em var(currentColor);
	background-color: currentColor;
}

input[type="checkbox"]:checked::before {
	transform: scale(1);
}

tr.heading > * {
	padding-top: 3vh;
}

th.left {
	text-align: left;
	padding-left: 0;
}
th, td {
	padding: 0.5rem;
}

td input[type="checkbox"]{
	margin: auto;
}

.firstweek {
	opacity: 0.5;
	pointer-events: none;
}