@import url('https://fonts.googleapis.com/css?family=Archivo+Black');

:root {
	--font-product-name: "Archivo Black";
	--font-size-product-name: 24px;
	--debugging-border: 1px dotted lavender; 
	--debugging-text-color: lavender; 
	--outline-object-width: 350px; 
	--status-object-width: 450px; 
	--menu-bar-height: 90px; 
	}

body {
	font-family: Ubuntu;
	background-color: whitesmoke;
	}
.divPageBody {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 90px;
	}
.divWordPage {
	}
.divExplanatoryText {
	line-height: 150%;
	margin-top: 3px;
	margin-bottom: 1em;
	width: 40%;
	font-size: 12px;
	}
.divOutlinerContainer {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid silver;
	min-height: 400px;
	background-color: white;
	padding: 5px;
	}
.divPageBackground {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	}
.divVersionNumber {
	font-size: 12px;
	float: right;
	padding: 3px;
	color: black;
	margin-top: -30px;
	}
.divHeadline {
	font-family: "Montserrat";
	font-size: 56px;
	line-height: 100%;
	display: table-cell;
	vertical-align: top;
	}
.divInfoIcon {
	font-size: 24px;
	vertical-align: top;
	display: table-cell;
	margin-left: 3px;
	color: seagreen;
	}

.divWordEntryBox {
	width: 40%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	}
.divWordEntryBox input[type="text"] {
	font-family: "Ubuntu";
	font-size: 18px;
	padding: 5px;
	width: 15em;
	height: 2em;
	display: table-cell;
	vertical-align: middle;
	margin-bottom: 0;
	}
.btnValidate {
	font-family: "Ubuntu";
	font-size: 16px;
	display: table-cell;
	vertical-align: middle;
	margin-left: 5px;
	}
.divErrorMessage {
	color: red;
	}

.divCommentsPrompt {
	font-size: 14px;
	margin-top: 14px;
	font-style: italic;
	text-align: center;
	}

.divMenuProductName {
	font-family: var(--font-product-name);
	font-size: var(--font-size-product-name);
	letter-spacing: -1px;
	margin-top: 4px;
	opacity: 0.7;
	color: black;
	}
.divMenubar .nav li {
	font-size: 14px;
	}
.divAppVersionNumber { /* 3/14/25 by DW */
	font-size: 12px;
	float: right;
	padding-top: 15px; 
	padding-right: 12px;
	}

.divPostTitleInOutline {
	max-width: var(--outline-object-width);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	}



.divGrid {
	display: grid;
	grid-template-columns: auto var(--outline-object-width) auto;
	gap: 7px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	}
.divIconsContainer {
	grid-column: 1;
	position: sticky;
	top: var(--menu-bar-height);  /* allow for the menubar, don't want it to slide under it as the user scrolls */
	padding-top: 5px;
	height: 100vh;
	border: var(--debugging-border);
	width: 32px;
	text-align: center;
	}
.divIconsContainer .divIcon {
	padding-bottom: 35px;
	text-align: center;
	}
.divIconsContainer .divIcon i, .divIconsContainer .divIcon svg {
	font-size: 20px;
	color: gray;
	cursor: pointer;
	}
.divReadingContainer {
	grid-column: 2;
	width: var(--outline-object-width);
	}
.divReadingContainer.staging { 
	height: 4000px;
	border: 1px dotted silver;
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	}
.divStatusContainer {
	grid-column: 3;
	margin-left: 10px;
	position: sticky;
	top: var(--menu-bar-height);
	height: 100vh;
	padding-left: 5px;
	}
.divStatusContainer .divTextBox {
	font-size: 14px;
	line-height: 140%;
	min-height: 100px;
	width: var(--status-object-width);
	padding-top: 15px;
	padding-left: 25px;
	padding-right: 25px;
	padding-bottom: 25px;
	border: 1px solid silver;
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	background-color: white;
	overflow-y: auto; /* enables vertical scrolling */
	}

.divTextBox .divTitle {
	font-size: 18px;
	font-weight: bold;
	padding-top: 8px;
	line-height: 125%;
	}
.divTextBox .divPubdate {
	}
.divTextBox .divDescription {
	padding-top: 10px;
	line-height: 145%;
	}

/* feed viewer */
	.divFeedViewerPage {
		border: var(--debugging-border);
		}
	.divFeedViewerPage .divImage {
		width: 64px;
		}
	.divFeedViewerPage .tdLabel {
		text-align: right;
		white-space: nowrap;
		padding: 3px;
		vertical-align: top;
		}
	.divFeedViewerPage .tdValue {
		padding: 3px;
		}
/* feed item viewer */
	.divFeedItem .divWpinfo {
		float: right;
		}

