/* Page and container theme */
body {
	background-color: navy;
	color: white;
}

.card {
	background-color: transparent;
	border: none;
}

.card-footer {
	background-color: navy;
	color: white;
}

/* Main board and categories */
#main-board {
	background-image: none;
	background-color: black;
}

#main-board-categories {
	background-image: none;
	background-color: black;
	border: none;
	color: white;
}

.category {
	padding-left: 5px;
	padding-right: 5px;
}

.category-title {
	background-image: none;
	border: none;
	margin-bottom: 10px;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	position: relative;
}

.category-text {
	font-size: 40px;
	font-family: Korinna;
	font-weight: bold;
}

.well {
	background-image: none;
	background-color: navy;
	border: none;
	margin-bottom: 10px;
	padding: 3px;
}

.question {
	color: goldenrod;
	font-size: 60px;
	font-family: Impact;
}

.question-text {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 30px;
	text-align: center;
	color: white;
}

/* Score/control rows */
#player-1-score-div {
	text-align: right;
}

#player-2-score-div {
	text-align: center;
}

.score-button-group {
	text-align: center;
}

.control-button-group {
	text-align: center;
	height: 15px;
}

#end-round {
	margin-right: 10px;
}

/* Generic modal styling */
.modal-header {
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: navy;
	color: white;
}

/* Question modal layout */
#question-modal,
#game-load-modal {
	width: 100vw;
	height: 100vh;
	padding: 0;
}

#question-modal-dialog,
#game-load-modal-dialog {
	width: 100vw;
	max-width: 100vw;
	margin: 0;
}

#game-load-modal-dialog {
	height: 100vh;
	padding: 0;
}

#question-modal-content,
#game-load-modal-content {
	height: 100vh;
	width: 100vw;
	border-radius: 0;
}

#question-modal-body {
	margin-left: 10%;
	margin-right: 10%;
}

#answer-text {
	font-size: 20px;
}

#answer.modal-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

#scoring-buttons.modal-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

#scoring-buttons .score-button-group > .col-md-4 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	float: none;
	width: auto;
}

/* Daily double modal */
#daily-double-modal .modal-footer {
	text-align: center;
}

#daily-double-logo-img {
	width: 100%;
	height: auto;
}

#daily-double-footer.modal-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

/* Timer */
#timer-grid {
	display: block;
	width: 512px;
	height: 40px;
	position: relative;
	background-color: silver;
	text-align: center;
	margin: 0 auto;
	padding: 5px;
}

.timer-square {
	display: inline-block;
	background-color: black;
	border: 1px solid #000;
	height: 30px;
	width: 50px;
	position: relative;
}

/* Images */
#game-load-logo-img {
	width: 60%;
	height: 80%;
}

#question-image img,
#final-image img {
	max-width: 100%;
	max-height: 60vh;
}

/* Bootstrap 3 markup compatibility for existing float-based layout. */
@media (min-width: 768px) {
	[class*="col-md-"] {
		float: left;
	}
}



