#objectives_content {
	margin-top: 2pt;
	clear: both;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#objectives {
	margin: var(--spacing-xl);
	padding: 0px;
	width: 100vw;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

#objective_history {
	margin: var(--spacing-xl);
	padding: var(--spacing-md);
	width: calc(100vw - 2 * var(--spacing-xl) - 2 * var(--spacing-md));
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;

	border-radius: var(--border-radius-document);
	background: #202020;
	box-shadow: var(--shadow-box);
	backdrop-filter: blur(5px);
	border: 1px solid var(--color-border);

}

#objectives div, #objective_history div {
	padding: var(--spacing-sm);
	background-color: #505050;
	color: var(--color-document-text);
	border: 1pt solid var(--color-border-medium);
	border-radius: 12pt;
	box-shadow: var(--shadow-medium);
	font-size: var(--font-size-tiny);
	width: 28pt;
	height: 28pt;
	margin: var(--spacing-md) var(--spacing-lg);
	text-align: center;
	vertical-align: middle;
	cursor: not-allowed;
}

#objectives div {
	line-height: 28pt;
	cursor: pointer;
}

#objectives div.true, #objectives div.false {
	width: 56pt;
}

#objectives div.false, #objective_history div.false {
	background-color: var(--color-state-error);
	color: var(--color-text);
	cursor: pointer;
}

#objectives div.true, #objective_history div.true {
	background-color: var(--color-state-perfect);
	color: var(--color-document-text);
	cursor: pointer;
}

#objectives div.selected {
	outline: 2pt solid var(--color-accent-light);
	outline-offset: 2pt;
}

.day {
	display: block;
	font-size: var(--font-size-base);
}

.month {
	color: var(--color-text-muted)
}

#dialogbox {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 100;
	top: 44pt;
	left: 0pt;
	width: 100%;
	height: calc(100% - 44pt);
	backdrop-filter: grayscale(100%) brightness(60%) blur(1px);
}

#dialogbox > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
