body {
	background: var(--background);
	color: var(--text-color);
	font-family: Arial, sans-serif;
	margin-bottom: 3rem;
}

.timer-container {
	display: grid;
	justify-content: center;
	width: 100%;
}

.image-stack {
	position: absolute;
	align-self: center;
}.image-stack__item {
	position: absolute;
	top: calc(var(--clock-size) * -1 - 2rem);;
	left: calc(var(--clock-size) / -2);
	height: var(--clock-size);
	width: var(--clock-size);
}

#schedule-button {
	user-select: none;
	cursor: pointer;
}

#textSplash {
	position: absolute;
	z-index: 100;
	text-align: center;
	width: 50rem;
	font-size: small;
	font-style: italic;
}

#clockFace {
	background-image: url("https://assets.uprep.lol/clockface/face.svg");
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
} #clockArmHour {
	background-image: url("https://assets.uprep.lol/clockface/arm_hour.svg");
} #clockArmMin {
	background-image: url("https://assets.uprep.lol/clockface/arm_min.svg");
} #clockArmSec {
	background-image: url("https://assets.uprep.lol/clockface/arm_sec.svg");
} #clockCenter {
	background-image: url("https://assets.uprep.lol/clockface/center.svg");
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
} .tick {
	transition: transform .1s linear;
}

.countdown-container {
	display: flex;
	flex-direction: column;
	width: 46rem;
	max-width: 95vw;
	margin-top: calc(var(--clock-size) + 2rem);
	justify-self: center;
}

.countdown-timer {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.countdown {
	background: var(--secondary-background);
	margin: 0.5em;
	border-radius: .75em;
	padding: 1em;
	box-shadow: inset 0 0 calc(var(--highlights) * 0.25rem) color-mix(in srgb, var(--secondary-background) 25%, rgba(128, 128, 128, 0.5) 75%);
}

.progress-container {
	background: var(--background);
	margin-top: 0.5em;
	border-radius: .5em;
	padding: 0.25em;
}

.progress-bar {
	text-align: center;
	font-size: 20px;
	border-radius: 5px;
	color: var(--text-color);
	box-shadow: inset 0 0 calc(var(--highlights) * 0.25rem) rgba(255, 255, 255, 0.5);
	color: white;
	transition: width .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.block {
	width: 0%;
	background: var(--accent-color);
}

.school {
	width: 0%;
	background: var(--accent-color);
}

.big-timer {
	width: 0%;
	background: var(--accent-color);
}

.quarter {
	width: 0%;
	background: var(--accent-color);
}

.schedule-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center
}

.schedule {
	background: var(--secondary-background);
	margin: 0.5em;
	border-radius: .75em;
	padding: 1em;
	min-width: 20rem;
	width: 20rem;
	min-height: 35rem;
	justify-content: center;
	box-shadow: inset 0 0 calc(var(--highlights) * 0.25rem) color-mix(in srgb, var(--secondary-background) 25%, rgba(128, 128, 128, 0.5) 75%);
}

.time-marker {
	position: absolute;
	width: calc(24rem - 2px);
	height: 0.125rem;
	background: red;
	top: 10rem;
	left: calc(50% - 4.5rem + 1px);
	
}

.time-indicator {
	position: absolute;
	top: 10rem;
	background: red;
	padding: 0.1rem;
	left: calc(50% - 4.5rem + 1px);
	color: white;
	padding-left: 0.2rem;
	padding-right: 0.2rem;
}

.day-label {
	text-align: center;
	margin-top: -0.25rem;
	margin-bottom: 0.5rem;
}

.schedule-table {
	width: 100%;
	height: calc(100% - 1.5rem);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 0.5rem;
	border: 1px solid var(--text-color);
}

th {
	border-bottom: 1px solid var(--text-color);
	margin: 0;
}

tr {
	background: var(--background);
}

.highlighted-event {
	background: var(--accent-color);
	color: white;
}

.top-event {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
	margin: 0;
}

.bottom-event {
	border-bottom-left-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
	border-bottom: 0;
}