body {
	background-color: #FFFFFF;
	font-family: sans-serif;
}

#content {
	position: fixed;
	margin: 0 auto 0 auto;
	top: 10%;
	left: 10%;
	width: 80%;
	height: 80%;
	font-size: large;
}

.nextButton {
	position: absolute;
	margin-left: 20px;
	bottom: 10px;
	right: 5px;
}

.previousButton {
	position: absolute;
	margin-right: 20px;
	bottom: 10px;
	right: 96px;
}

/* @group Form Input */

#image {
	height: 200px;
	width: 200px;
}

#formInput {
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}
#formInput #firefox {
	text-align: center;
	font-size: small;
}
#formInput #form {
	text-align: center;
}
#formInput #fullscreenNote {
	font-size: small;
}
#formInput #referenced-actors {
	display:flex;
	flex-direction: row;
	align-items: flex-start;
}
#formInput #referenced-actors * {
	margin: 0;
	line-height: 1.4rem;
}
input[readonly] {
	background-color: rgb(223, 223, 223);
	color: initial;
	border-radius: initial;
	border-color: initial;
}

#genderTable {
	border-collapse: collapse;
}

#genderTable td {
	padding: 0;
	margin: 0;
}

/* @end */

/* @group instruction */

.instructionPage {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	border: 1px solid rgb(240,240,240);
	border-right: none;
	border-left: none;
}
.instructionPage p {
	margin: 0 1rem;
	line-height: 1.6rem;
}
@media screen and (max-width: 1300px) {
	.instructionPage p {
		line-height: 1.2rem;
	}
}

.instruction-page-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.instruction-page-container img.cue.imageintext {
	max-height: 3rem;
	max-width: 3rem;
	height: 3rem;
	width: 3rem;
}

#instructionPage1-container-1-1 {
	display:flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 2rem;
}
#instructionPage1-container-1-1 img {
	width: 220px;
	padding: 1rem;
}
#instructionPage1-container-2-1 {
	display:flex;
	align-items: center;
	gap: 2rem;
	margin: 0 1rem;
}
#instructionPage1-container-2-1 p {
	margin: 0;
	width: 40%;
}
#instructionPage1-container-2-1-1 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1rem;
}
#instructionPage1-container-2-1-1 img {
	padding: 16px;
	max-height: 100px;
	border: 1px solid lightgrey;
	background-color: white;
}
#instructionPage1-container-2-1-1 span {
	font-weight: 600;
}

#instructionPage2 {
	justify-content: center;
	align-items: center;
	gap: 2rem;
}
#instructionPage2-container-1 {
	align-items: center;
	gap: 1rem;
}
#instructionPage2-container-1 {
	text-align: center;
}

#instructionPage3 {
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.targetTypeRef {
	width: 6em;
}


/* @end */

#testPageContainer {
	position: fixed;
}

#testPage {
	position: relative;
}

/* @group Display */

.display {
	position: absolute;
}

.target {
	vertical-align: bottom;
}

.cue {
	vertical-align: bottom;
}
.practiceFeedback {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
}

/* @end */


/* @group Export Page */

#exportPage {
	font-size: medium;
}

.filename {
	border: solid 1px;
	width: auto;
}

/* @end */

#attribution {
	position: fixed;
	z-index: -1;
	bottom: 0;
	right: 0;
	width: 80px;
}

#attribution img {
	vertical-align: bottom;
}

#idaioslogo {
	background-color: #333334;
	width: 80px;
}

/* @group Progress Bar */

#ant-progressbar-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	color: #555;
	border-bottom: 1px solid #dedede;
	background-color: #f9f9f9;
	margin-bottom: 1em;
	text-align: center;
	padding: 8px 0px;
	line-height: 1em;
	visibility: hidden;
	pointer-events: none;
}

#ant-progressbar-container span {
	font-size: 14px;
	padding-right: 14px;
}

#ant-progressbar-outer {
	background-color: #eee;
	width: 50%;
	margin: auto;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

#ant-progressbar-inner {
	background-color: #aaa;
	width: 0%;
	height: 100%;
}

/* @end */

/* Fullscreen button */
#fullscreen-btn {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 10000;
	background-color: rgba(255, 255, 255, 0.9);
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s, border-color 0.2s;
}

#fullscreen-btn.show {
	display: flex;
}

#fullscreen-btn:hover {
	background-color: rgba(240, 240, 240, 0.95);
	border-color: #bbb;
}

#fullscreen-btn svg {
	display: block;
	fill: #555;
}

#fullscreen-btn:hover svg {
	fill: #333;
}
