body {
	padding: 0px;
	margin: 0px;
	
	font-family: Tahoma;
}

body > div {
	box-sizing: border-box;
	padding: 0em 2em;
}

body > .header {
	margin: 0.5em 0.5em;
}

.header {
	height: 2em;
	
	box-sizing: border-box;
	margin: 0em;
	padding: 0em 1em;
	
	line-height:2em;
	
	background-color:lightblue;
}
.header > * {
	margin-top: 0em;
	margin-bottom: 0em;
}

.header.nav-header {
	border-radius:0.5em;
}

.section {
	position: relative;
	margin-bottom: 1em;
	
	overflow: hidden;
	
	border: 1px solid black;
	border-radius: 1em;

}

.section > * {
	margin: 1em 1em;
}
.section > .header {
	margin: 0em;
}

.list {
	display: flex;
	flex-direction:column;
}
.list-tiled {
	flex-direction: row;
	flex-wrap: wrap;
	
	justify-content: space-evenly;
	align-content: flex-start;
	
	position: relative;
}
.list-tiled > .list-item {
	flex-basis: 30%;
	flex-grow: 0;
	
	display: flex;
	flex-direction: column;
}

.list-item {
	
}
.list-item > .header {
	background-color: lightskyblue;
}
.list-item > .wrapper {
	flex-basis: 1px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.list-item-short a::before {
	content: " ";
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgb(128 128 128 / 10%);
}

table.task-details th:first-child, 
table.task-details td:first-child {
	text-align:left;
}

.assoc-entry {
	
}

.assoc-key {
	font-weight: bold;
}
.assoc-value {
	margin-left: 1em;
}