@import url('https://fonts.googleapis.com/css?family=Oswald:400,700');
@import url('https://fonts.googleapis.com/css?family=Archivo+Black');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

:root {
	--width-page-body: 750px; 
	--width-chatlog-container: 750px; 
	
	--font-product-name: "Archivo Black";
	--min-height-msgtext: 200px;
	--min-width-msgtext: 550px;
	--top-line-icon-color: darkslategray;
	
	--bodytext-font-family: "Ubuntu";
	--bodytext-font-size: 16px;
	--bodytext-line-height: 150%;
	
	--border: 1px solid #BEBEBE;
	
	--opacity-enabled: 0.80;
	--opacity-disabled: 0.35;
	
	--body-background-color: white;
	--item-background-color: whitesmoke;
	--prompt-color: slategray;
	
	--debugging-border: 1px dotted lavender;  /* 10/13/24 by DW */
	}

body {
	font-family: Ubuntu;
	font-size: 18px;
	background-color: var(--body-background-color);
	}
.divPageBody {
	width: var(--width-page-body);
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	margin-bottom: 400px;
	}
.divMenuProductName {
	font-family: var(--font-product-name);
	font-size: 32px;
	letter-spacing: -1px;
	margin-top: 4px;
	opacity: 0.7;
	color: black;
	}
.divMenubar .nav li {
	font-size: 14px;
	}

.divSignedOff {
	margin-top: 200px;
	line-height: 200%;
	text-align: center;
	}
.divLogonButton {
	display: none;
	}
.divLoggedInMessage {
	margin-top: 50px; /* 11/3/24 by DW */
	border-top: 1px solid silver;
	font-size: 14px;
	padding-top: 10px;
	}

/* chatlog -- 5/4/24 by DW */
	.divChatlogContainer { /* 3/29/25 by DW */
		}
	.divChatlog {
		width: 100%;
		font-size: 16px;
		line-height: 140%;
		}
	.divChatlog .divChatlogItems {
		display: table;
		}
	.divChatlog .divChatItemContainer {
		border: var(--border);
		width: 100%;
		margin-bottom: 25px;
		}
	.divChatlog .divChatItem {
		width: 100%;
		margin-bottom: 5px;
		background-color: var(--item-background-color);
		box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
		}
	.divChatIcon img {
		height: 48px;
		width: 48px;
		}
	.divChatlog .divChatText {
		vertical-align: top;
		font-family: var(--bodytext-font-family);
		font-size: var(--bodytext-font-size);
		line-height: var(--bodytext-line-height);
		padding-left: 25px;
		padding-right: 25px;
		padding-top: 15px;
		padding-bottom: 5px;
		}
	.divChatlog .divChatText textarea {
		font-family: var(--bodytext-font-family);
		font-size: var(--bodytext-font-size);
		line-height: var(--bodytext-line-height);
		}
	
	.divChatItem:last-child .divChatIcon, .divChatItem:last-child .divChatText {
		}
	
	.divChatlog .divEditorsContainer {
		margin-top: 15px;
		margin-bottom: 15px;
		}
	
	.divChatlog .divIconLine {
		display: flex;
		justify-content: space-between;
		}
	.divChatlog .divIconLine .enabled i {
		opacity: 0.7;
		}
	.divChatlog  .divIconLine .disabled i {
		opacity: 0.4;
		}
	.divChatlog  .divIconLine .spIcon { /* 11/2/24 by DW */
		}
	.divChatlog  .divIconLine .spHover { /* 11/2/24 by DW */
		color: green;
		}
	.divChatlog .dropdown-menu {
		font-size: 14px;
		margin-top: -20px;
		padding-top: 0;
		padding-bottom: 0;
		text-align: left;
		}
	.divChatlog .spPostTitle {
		font-size: 18px;
		font-weight: bold;
		letter-spacing: -1px;
		color: var(--top-line-icon-color);
		cursor: pointer; /* you can click on it to set the title */
		border: var(--debugging-border);
		
		display: inline-block; /* allows us to set min-width */
		min-width: 20em; /* so you have more space to click in */
		min-height: 24px; /* the edit box collapses if there's nothing in it */
		}
	.divChatlog .spTitleBeingEdited { /* 10/12/24 by DW */
		border: 1px solid #ccc;
		background-color: white;
		outline: none;
		}
	.divChatlog .isPrompt {
		color: var(--prompt-color);
		}
	.divChatlog .spPostTitle a {
		color: inherit;
		}
	
	.divChatlog .spEyeIcon {
		margin-left: .3em;
		color: var(--top-line-icon-color);
		font-size: .9em;
		}
	.divChatlog .spEyeIcon a {
		color: inherit;
		}
	.divChatlog .spPopupMenuIcon {
		margin-left: .3em;
		color: var(--top-line-icon-color);
		}
	.divChatlog .spDropdown {
		margin-left: .3em;
		color: var(--top-line-icon-color);
		}
	
	.divChatlog .divEditorsContainer li {
		line-height: var(--bodytext-line-height);
		margin-bottom: 5px;
		}
	.divChatlog .divEditorsContainer p {
		margin-bottom: 10px;
		}
	
	.divChatlog .divEditorsContainer h4 { /* 7/21/25 by DW */
		font-size: 17px; 
		font-weight: bold;
		margin-top: 5px;
		margin-bottom: 5px;
		line-height: var(--bodytext-line-height);
		}
	.divChatlog .divEditorsContainer pre, .divChatlog .divEditorsContainer code { /* 5/5/25 by DW */
		font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
		font-size: 13px;
		padding: 0;
		margin-bottom: 10px;
		border: none;
		background-color: inherit;
		}
	
	.divChatlog .divClickableMsg, .divChatlog .editing, .divChatlog textarea {
		width: 100%;
		
		padding-left: 5px; /* 2/25/25 by DW */
		padding-right: 2px;
		
		min-height:  var(--min-height-msgtext);
		min-width:  var(--min-width-msgtext);
		border: 1px solid gainsboro;
		overflow: hidden;
		}
	.divChatlog .editing {
		min-height:  var(--min-height-msgtext);
		}
	.divChatlog .editing:focus, .divChatlog textarea, .divChatlog .spTitleBeingEdited:focus {
		border-color: rgba(82, 168, 236, 0.8);
		outline: 0;
		outline: thin dotted \9;
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
		background-color: white;
		}
	
	.divChatlog textarea {
		background-color: white;
		}
	
	.divChatlog .divTopMsgLine {
		width: 100%;
		font-size: 18px;
		border: 1px dotted lavender;
		}
	.divChatlog .divTopMsgLine .divLeftCell {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		}
	.divChatlog .divTopMsgLine .divRightCell {
		width: 270px; /* 7/20/25 by DW */
		text-align: right;
		float: right;
		margin-top: 5px;
		
		}
	.divChatlog .divTopMsgLine.empty-title .divRightCell { /* When the title is empty, center the right cell */
		flex: 1;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		}
	.divChatlog .divTopMsgLine.empty-title .divLeftCell { /* Hide the left cell when title is empty */
		display: none;
		}
	
	
	.divChatlog .spSavedMessage .enabled i {
		color: green;
		opacity: var(--opacity-enabled);
		}
	.divChatlog .spSavedMessage .disabled i {
		color: blue;
		opacity: var(--opacity-disabled);
		}
	
	
	.divChatlog .divBottomMsgLine {
		display: flex;
		
		justify-content: space-evenly;
		
		align-items: center;
		
		font-size: 13px;
		color: var(--prompt-color);
		}
	.divChatlog .divBottomMsgLine span {
		text-align: center;
		margin-left: 10px;
		}
	.divChatlog .divBottomMsgLine span:first-child {
		margin-left: 0;
		}
	
	.divChatlog .spWhen {
		cursor: pointer; /* you can click on it to view the published post */
		}
	.divChatlog .spPersonName {
		}
	.divChatlog .spPersonName a {
		color: inherit;
		}
	.divChatlog .spScreenName {
		display: none; /* 5/22/24 by DW */
		margin-right: .5em;
		font-size: .8em;
		color: var(--top-line-icon-color);
		}
	.divChatlog .spScreenName a {
		color: inherit;
		}
	.divChatlog .spBy {
		color: var(--top-line-icon-color);
		}
	.divChatlog .spSavedMessage {
		}
	.divChatlog .spCategories {
		cursor: pointer;
		}
	
	.divChatlog .spSiteName a { /* 10/18/24 by DW */
		color: inherit;
		cursor: pointer;
		}
	
	.divChatlog .spUpdateableWordCount:hover { /* 6/30/25 by DW */
		cursor: default;
		}
	.divChatlog .spSavedMessage:hover { /* 7/2/25 by DW */
		cursor: default;
		}
	
	.divChatlog .spMarkdownOn { /* 7/19/25 by DW */
		color: green;
		}
	
/* users files -- 5/16/24 by DW */
	.divUsersFilesContainer td {
		font-size: 14px;
		padding: 3px;
		}
	.divUsersFilesContainer .tdRight {
		text-align: right;
		}
/* page top -- 5/19/24 by DW */
	.divPagetop {
		width: 100%;
		}
	.divPagetopImage {
		position: absolute;
		top: 0;
		left: 0;
		height: 230px;
		width: 100%;
		margin-left: 0;
		margin-top: 0;
		z-index: -1;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-color: black;
		z-index: 0;
		}
	.divPagetopTextBackground {
		position: absolute;
		top: 30;
		left: 15%;
		width: 70%;
		height: 140px;
		z-index: 1;
		background-color: black;
		opacity: 0.25;
		border-top: 1px solid white;
		display: none;
		}
	.divPagetopText {
		position: absolute;
		text-align: center;
		top: 60;
		left: 15%;
		width: 65%;
		height: 200px;
		color: white;
		padding-top: 3px;
		padding-left: 20px;
		z-index: 2;
		}
	.divPagetopTitle {
		font-family: "Oswald";
		font-size: 80px;
		font-weight: 700;
		font-style: normal;
		letter-spacing: -0.01em;
		line-height: 1.1;
		margin-bottom: 0;
		color: white;
		text-shadow: 1px 1px black;
		}
	.divPagetopTitle a {
		color: white;
		}

/* hello friend -- 10/24/24 by DW */
	.divHelloFriendContainer {
		}
	.divHelloFriendContainer .divHelloFriend {
		width: 100%;
		margin-bottom: 5px;
		background-color: var(--item-background-color);
		box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
		padding: 5px;
		line-height: 140%;
		}
	.divHelloFriendContainer .pSpecialComment, .divHelloFriendContainer .pProductName {
		font-family: var(--font-product-name);
		letter-spacing: -1px;
		opacity: 0.7;
		color: black;
		text-align: center;
		vertical-align: middle;
		}
	.divHelloFriendContainer .pProductName {
		font-size: 48px;
		margin-top: .5em;
		}
	.divHelloFriendContainer .pSpecialComment {
		font-size: 28px;
		margin-top: 1em;
		margin-bottom: 1em;
		opacity: 0.5;
		}
	.divHelloFriendContainer .pExplanation {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 25px;
		margin-bottom: 35px;
		}
	.divHelloFriendContainer .divClickToLogoffWordpress {
		margin-top: 25px;
		margin-bottom: 25px;
		text-align: center;
		}
	.divHelloFriendContainer .imgRightMargin {
		float: right;
		padding-left: 25px;
		padding-bottom: 10px;
		padding-top: 10px;
		padding-right: 15px;
		}
	
	
/* misc -- 2/22/25 by DW */
	.spinner {
		position: fixed;
		top: 15%;
		left: 47.5%;
		z-index: 1050;
		width: 50px;
		margin-top: 120px;
		}
	.spinner > svg {
		width: 50px;
		height: 50px;
		color: black;
		}
	.divChatlog blockquote p {
		font-family: var(--bodytext-font-family);
		font-size: var(--bodytext-font-size);
		line-height: var(--bodytext-line-height);
		font-weight: normal;
		}
	
	.divWordlandVersionNumber { /* 3/14/25 by DW */
		font-size: 12px;
		float: right;
		padding-top: 15px; 
		padding-right: 12px;
		}
	
	.imgForPreview { /* 3/22/25 by DW */
		display: block;
		border: 1px solid lavender;
		margin-top: 8px;
		max-width: 90%;
		max-height: 90%;
		}

.iMenuCheck {
	font-size: 12px;
	margin-left: -18px;
	margin-right: 2px;
	opacity: 0.9;
	}
.divSpacerRow {
	display: table-row;
	}
.divSpacerItem {
	display: table-cell;
	height: 25px;
	border-top: var(--border);
	}
.divTelltalePart {
	display: none;
	}

.tooltip-inner { /* widen so we can fit a longer tip */
	max-width: 300px;
	}

.divChatlog .placeholder { /* 6/13/25 by DW */
	color: gray;
	font-size: 16px;
	letter-spacing: 0;
	font-weight: normal;
	}

.divChatlog .dropdown.open .dropdown-menu-left { /* 7/18/25 by DW */
	right: 100%;
	left: auto;
	}

.divChatlog .divChatItem.isMarkdownEditor textarea {  /* 7/20/25 by DW */
	padding-top: 0px;
	}


/* styles for phone */
	@media screen and (max-width: 576px) { /* the official number used by bootstrap toolkit */
		.divPageBody {
			width: 95%;
			margin-top: 70px;
			}
		.divMenubar .container { 
			width: 95%;
			}
		.divMenuProductName {
			font-size: 30px;
			}
		.divChatlog .divClickableMsg, .divChatlog .editing, .divChatlog textarea {
			min-width: 95%;
			}
		.divChatlog .divTopMsgLine .divRightCell {
			width: 110px;
			}
		.divChatlog .divChatText, divChatlog .divChatText textarea {
			font-size: 14px;
			}
		.spCharCount {
			display: none;
			}
		.divTelltalePart {
			display: block;
			}
		}
/* styles for tablet */
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
		.divPageBody {
			width: 95%;
			margin-top: 80px;
			}
		.divLoggedInMessage {
			margin-top: 50px;
			}
		.divMenubar .container { 
			width: 95%;
			}
		}
