* {
	box-sizing: border-box;
	margin: 0;
}
body {
	font-family: Arial, sans-serif;
	margin: 0;
	display: flex;
	justify-content: center;
}

:root {
	/* --bgColor: ghostwhite; */
	--bgColor: snow;
	--headerColor: royalblue;
	/* --headerColor: navy; */
	--accentColor: dodgerblue;
	--hrColor: #bdd2e9;
}

.indexPageDIV {
	max-width: 320px;
	height: 100vh;
	background-color: var(--bgColor);
	color: var(--headerColor);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: auto;
	text-align: center;
	margin: 10px;
}

.containerDIV {
	max-width: 320px;
	width: 100%;
	/* max-width: 640px; */
	background-color: var(--bgColor);
	height: 100vh;
	color: var(--headerColor);
}

.contentHeaderDIV {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	background-color: var(--headerColor);
	color: var(--bgColor);
	font-size: 1.2em;
	border-bottom: 1px solid var(--accentColor);
	border-top: 1px solid var(--accentColor);
	margin-bottom: 10px;
}

.contentDIV {
	padding: 0 5px;
}

hr {
	background-color: var(--hrColor);
	height: 2px;
	border: none;
	margin: 10px -5px;
}

.table-row {
	width: 100%;
	display: flex;
}

.table-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.table-cell-header {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.table-cell-20 {
	/* width: 20%; */
	width: 100px;
	justify-content: center;
}

.table-cell-border {
	border: 1px dotted var(--accentColor);
	/* border-bottom-left-radius: 5px; */
	/* border-bottom-right-radius: 5px; */
	margin: -10px -5px 20px -5px;
	width: calc(100% + 10px);
	/* padding: 10px; */
}

.table-cell-left-align {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.link {
	cursor: pointer;
}
.bigIcon {
	font-size: 36px;
	color: var(--accentColor);
}

.bigIconWhite{
	font-size: 36px;
	color: var(--bgColor);
}

.centerMe {
	display: flex;
	justify-content: center;
	align-items: center;
}

#goHomeLink {
	color: var(--bgColor);
}

.texteditDIV {
	width: calc(100% - 4px);
	border: 1px dotted var(--accentColor);
	height: 100px;
}
.editDIV {
	display: none;
}

.editBtnSave {
	width: 100%;
	border: 1px solid var(--headerColor);
	background-color: var(--accentColor);
	color: var(--bgColor);
	font-size: 24px;
	border-radius: 3px;
	cursor: pointer;
}

.recorderPanelButton {
	display: none;
	align-items: center;
	height: 60px;
	width: 100%;
	font-size: 36px;
	background-color: var(--accentColor);
	color: var(--bgColor);
	margin-top: 5px;
	padding: 5px 20px;
	cursor: pointer;
}

.recorderButtonLeftHalf {
	width: 50%;
	text-align: center;
}
.recorderButtonRightHalf {
	width: 50%;
	text-align: left;
}

.myLevelBG {
	position: relative;
	width: 100%;
	height: 7px;
	background-color: #ddd;
}

.myLevel {
	position: absolute;
	width: 0;
	top: 1px;
	left: 0;
	height: 5px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	background-color: #aaa;
}


#btnStartConversation, #btnPlayConversation, #btnUploadResponses, #conversationInfoDIV, #btnStopRecording{
     display: none;
}

.contrastDIV{
	background-color: var(--accentColor);
	color: var(--bgColor);
	padding: 5px;
}

.contrastPlay{
	color: var(--bgColor)
}

#playConversationStatus, #spanDownloadMsg{
	font-style: italic;
}

