:root {
	--AppPadding: 7px;
	color: white;
	background: #1399ff;
}

body {
	font-family: Helvetica, Arial, sans-serif;
}

.AppHeading {
	display: inline-block;
	/* So it's easier to select the element if someone decides to set
	an empty title. */
	padding-right: 0.5rem;
}

#AppList {
	padding: 2px;
}

.AppListItem {
	list-style: none;

	display: flex;
	align-items: center;
	border-bottom: 1px solid white;
}

.AppListItemName {
	padding: 0.375rem;
}

.AppListItemDone {
	opacity: 0.5;
}

.AppListItemDone .AppListItemName {
	text-decoration: line-through;
}

.AppListItemForm {
	display: flex;
}

.AppListItemField, .AppListItemButton {
	padding: var(--AppPadding);
	border: 1px solid black;
	border-radius: var(--AppPadding);

	margin: 0;
}

#AppCreateField, .AppCreateButton {
	font-size: 12px;
	font-weight: bold;
}

.AppListItemField {
	border-right: none;
	border-radius: var(--AppPadding) 0 0 var(--AppPadding);
}

.AppListItemButton {
	border-radius: 0 var(--AppPadding) var(--AppPadding) 0;
	
	background: black;
	background: lightgray;
}
