
#interviewContainer {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#interviewRecorder, video.interviewPlayer {
	background: #000;
	width: 640px;
	height: 480px;
	max-width: 100%;
}


#interviewContainer #buttonsContainer {
	padding: 10px;
}
#interviewContainer #buttonsContainer button[disabled] {
	opacity: 0.20;
	pointer-events: none;
}
#questionsContainer {
	display: flex;
	width: 100%;
}
#questions {
	background: #000;
	color:white;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
	width: 100%;
	flex: 1;
}

#questionNumber {
	width: 50px;
	background: red;
	font-size: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	border-radius: 5px;
	color: white;
}
#buttonsContainer button {
	padding: 10px;
	cursor: pointer;
	margin: 5px;
	border:none;
}
button#startButton {
	background: red;
	color:white;
}