* {
	box-sizing: border-box;
}

body {
	text-align: center;
	background: #fbeec1;
	font-family: "Helvetica", sans-serif;
	font-size: 1.2em;
}

.question_input {
	color: green;
	font-weight: bold;
}

table, th, td {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #659dbd;
	border-collapse: collapse;
}

#answer_sheet {
	width: 60vw;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.question_input:not(#team_name_input) {
	margin-bottom: 2vh;
}

#team_name_div {
	margin-bottom: 10vh;
}

.text_column {
	width: 15vw;
}

.number_column {
	width: 2vw;
}

.quiz_list_div {
    width: 20vw;
    height: 80vh;
    float: left;
    overflow-y: auto;
    border-right: groove;
}

.quiz_editor_div {
    width: 30vw;
    height: 80vh;
    float: left;
    overflow-y: auto;
    border-right: groove;
}

.question_list_div {
    width: 45vw;
    height: 80vh;
    float: left;
    overflow-y: auto;
}

.editor_question_input {
    width: 42vw;
    height: 36px;
}

.editor_answer_input {
    width: 42vw;
    height: 18px;
}

.entry {
    border-bottom: solid 1px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.entry form {
    display: inline;
}

.left_panel {
    overflow-y: auto;
    width: 100vw;
    height: auto;
    border-top: groove;
}

.main_panel {
    overflow-y: auto;
    width: 100vw;
    height: 70vh;
}

@media only screen and (min-width: 768px) {
	.left_panel {
		position: fixed;
		top: 0;
		left: 0;
		width: 20vw;
		height: 100vh;
		border-top: none;
		border-right: groove;
	}
	
	.main_panel {
		position: fixed;
		top: 0;
		right: 0;
		width: 80vw;
		height: 100vh;
	}
	
	.question_input:not(#team_name_input) {
		width: 20vw;
	}
}
