html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

* {
	font-family: Arial;
	font-size: 12pt;
}

body {
  margin-bottom: 60px;
}

.mainContainer {
	margin-bottom: 50pt;
}

.container {
	margin-bottom: 6pt;
}

.btn {
	border: 1px solid black;
	border-radius: 4px;
	background-color: white;
	color: black;
	padding: 4pt;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
	width: 150px;
}

.btn:hover {
	background-color: royalblue;
	color: white;
}

.btnSmall {
	border: 1px solid black;
	border-radius: 4px;
	background-color: white;
	color: black;
	padding: 1pt;
	border-radius: 4px;
	cursor: pointer;
	font-size: 9pt;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
	width: 50px;
}

.btnSmall:hover {
	background-color: royalblue;
	color: white;
}

.inputMed {
	width: 300px;
	padding: 5px;
	border-radius: 4px;
}

.inputError {
	border: 2px solid red;
}

.racerIdTableHeading {
	text-align: left;
	width: 100px;
}

.racerNameTableHeading {
	text-align: left;
	width: 150px;
}

.racerCarWeightTableHeading {
	text-align: left;
	width: 150px;
}

.racerIdCell {
	padding: 6px;
	width: 100px;
}

.racerNameCell {
	padding: 6px;
	width: 150px;
}

.racerCarWeightCell {
	padding: 6px;
	width: 150px;
}

.racerRemoveCell {
	padding: 6px;
}

.removeRacerBtn {
	cursor: pointer;
	font-weight: 600;
	font-size: 10pt;
}

.removeRacerBtn:hover {
	font-weight: 700;
	font-size: 11pt;
}

.link {
	text-decoration: none;
}

.racerCell {
	width: 100px;
	background-color: lightgray;
	border-bottom: 1px solid black;
	text-align: center;
	height: 12pt;
}

.racerCellEliminated {
	width: 100px;
	background-color: red;
	border-bottom: 1px solid black;
	text-align: center;
	height: 12pt;
}

.vsCell {
	width: 100px;
	text-align: center;
}

.blankCell {
	height: 24pt;
}

#brackTable {
	width: 100%;
}

tr {
	display: flex;
}

td {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	flex: 1 100%;
}

.racerDiv {
	display: flex;
	justify-content: center;
	flex: 1 50%;
}

.winnerCell {
	display: flex;
	flex: 1;
}

th {
	display: flex;
	flex: 1 100%;
}