@font-face {
    font-family: 'Avant Garde Pro Book'; /*a name to be used later*/
    src: url('ITCAvantGardePro-Bk.otf'); /*URL to font*/
}

body {
    font-family: 'Avant Garde Pro Book', sans-serif;
    background-color: black;
    color: white;
    margin: 0;
}

h1 {
    text-align: left;
    display: inline-block;
}

#control-header{
	background-color: #262626; 
	padding: 10px; 
	margin-right: 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-weight: bold;
}


.top-button{
	margin-left: 10px;
	height: 30px;
	width: 200px;
	font-weight: bold;
}

table {
	table-layout: fixed;
	width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

td {
    border: 1px dotted white;
    text-align: center;
    text-wrap: wrap;
    padding: 10px;
    height: 20px;
}

#header-TeamName, #header-Email, #header-Correct {
	width: 200px;
	border: 1px solid white;
	font-weight: 900;
	font-size: 14px;
}

#header-Rank, #header-Points, #header-Status, #header-ReplayPoint, #header-DON, #header-HMWager, #header-Progress, #header-DONOutcome, #header-HMOutcome, #header-PerfectRounds {
	width: 70px;
	border: 1px solid white;
	font-weight: 900;
	font-size: 14px;
}

#td-rank, #td-points{
	font-size: 20px;
	font-weight: bold;
}

#td-name{
	font-weight: bold;
}



tbody tr:nth-child(even) {
    background-color: black;
}
tbody tr:nth-child(odd) {
    background-color: #262626;
}

.questionLabel{
	border-top: 1px solid white;
	border-left: 5px solid white;
	border-right: 5px solid white;
	font-weight: 900;
}

.header-score, .td-score{
	width: 50px;
	border-left: 5px solid white;
	border-top: 1px solid white;
	padding: 0px;
	font-size: 2em;
}


.header-response, .td-response{
	border-right: 5px solid white;
	border-top: 1px solid white;
	width: 200px;
}

#header-row-1{
	background-color: black;
}

#header-row-2{
	background-color: #F83847;
	font-size: 18px;
}

input{
	width: 100%;
	height: 100%;
	font-size: 20px;
	font-weight: bold;
	background-color: rgba(0,0,0,0);
	color: white;
	box-sizing: border-box;
	text-align: center;
	border: none;
}






.toggle-label {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 24px;
    cursor: pointer;
}

.toggle-label input {
    display: none;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 12px;
    transition: 0.4s;
}

.toggle-label input:checked + .slider {
    background-color: #2196F3;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

.toggle-label input:checked + .slider:before {
    transform: translateX(26px);
}

