#lobby-container {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  padding: 10px;
}

#open-games {
  padding: 10px;
  margin: 3px;
  flex: 1;
}

#new-game-form {
  padding: 10px;
  margin: 3px;
  flex: 1;
}

#new-game-form > input[type=button] {
  padding-left: 5px;
}

#open-games-container > ul {
  list-style-type: none;
  list-style: none;
  padding-left: 0px;
  margin-top: 5px;
  margin-left: 5%;
  margin-right: 5%;
  flex-wrap: wrap;
  overflow-y: auto;
}
#open-games-container > ul > li:not(:first-child) {
  margin-top: 10px;
}

.make-game {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  display: flex;
  flex-direction: row;
  margin: 5px;
  padding: 5px;
  border: 1px solid black;
  border-radius: 3px;
  box-sizing: border-box;
}
.make-game:disabled {
  background-color: gray;
}
.make-game:not(:disabled) {
  cursor: pointer;
}
.make-game:hover {
  background-color: #DDD;
}

.game-to-join {
  display: flex;
  flex-direction: column;
  margin: 5px;
  padding: 5px;
  border: 1px solid black;
  border-radius: 3px;
  overflow-x: auto;
  box-sizing: border-box;
}

.game-to-join-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.game-to-join-header h5 {
  margin-top: 0px;
  margin-bottom: 5px;
}
.game-to-join-header button {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  padding-bottom: 2px;
  margin: 2px;
  border-radius: 3px;
}
.game-to-join-header button:disabled {
  background-color: gray;
}
.game-to-join-header button:not(:disabled) {
  cursor: pointer;
}
.game-to-join-header button:hover {
  background-color: #DDD;
}

.game-to-join-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
}
.game-to-join-body h4 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: smaller;
}
.game-to-join-body ul {
  flex: 1;
  margin-left: 0px;
  margin-bottom: 10px;
  margin-top: 3px;
  justify-content: unset;
}

#open-games-container label {
  padding-left: 10px;
}

.user-info-modal {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 25%;
  right: 25%;
  padding: 20px;
  background-color: #EEE;
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}
.user-info-modal .bottom-buttons {
  align-self: flex-end;
  display: flex;
  flex-direction: row;
}
.user-info-modal .bottom-buttons button {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
}
.user-info-modal .bottom-buttons button:disabled {
  background-color: gray;
}
.user-info-modal .bottom-buttons button:not(:disabled) {
  cursor: pointer;
}
.user-info-modal .bottom-buttons button:hover {
  background-color: #CCC;
}
.user-info-modal fieldset {
  flex: 1;
  margin: 10px;
}
.user-info-modal ul {
  list-style-type: none;
  padding-left: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}
.user-info-modal ul li {
  font-size: smaller;
  margin: 0px;
}
.user-info-modal ul .option-label {
  padding-bottom: 3px;
  padding-top: 10px;
}
.user-info-modal ul .option-label:first-child {
  padding-top: 3px;
}
.user-info-modal h4 {
  margin: 0px;
  padding-bottom: 5px;
}
.user-info-modal input[type=text] {
  width: 100%;
}

.avatar-input {
  display: flex;
}
.avatar-input canvas {
  border: 1px solid black;
}

.avatar-input-panel {
  display: flex;
  flex-direction: row;
  padding-left: 5px;
}

.avatar-color-buttons {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 5px;
}
.avatar-color-buttons > button {
  border: 1px solid black;
  border-radius: 5%;
  flex: 1;
  margin-top: 2px;
  margin-bottom: 2px;
}

.avatar-input-color-display {
  padding: 10px;
  border: 1px solid black;
  flex: 1;
  align-self: flex-start;
  margin-bottom: 10px;
}

.avatar-input-second-panel {
  flex: 3;
  display: flex;
  flex-direction: column;
  margin-right: 10px;
}

.avatar-input-tool-select {
  flex: 3;
}

.avatar-input-reset {
  flex: 1;
}

.avatar-button-color-red {
  background-color: red;
}

.avatar-button-color-orange {
  background-color: orange;
}

.avatar-button-color-green {
  background-color: green;
}

.avatar-button-color-blue {
  background-color: blue;
}

.avatar-button-color-purple {
  background-color: purple;
}

.avatar-button-color-black {
  background-color: black;
}

.avatar-button-color-white {
  background-color: white;
}

div.player-controls {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 5px;
  justify-content: center;
  align-items: stretch;
}

.buzz-button-enabled {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  flex: 4;
  margin: 10px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: darkred;
  border: 2px solid darkred;
  cursor: pointer;
}
.buzz-button-enabled:disabled {
  background-color: gray;
}
.buzz-button-enabled:not(:disabled) {
  cursor: pointer;
}
.buzz-button-enabled:hover {
  background-color: pink;
  color: black;
}

.buzz-button-disabled {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  flex: 4;
  margin: 10px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  background-color: gray;
}
.buzz-button-disabled:disabled {
  background-color: gray;
}
.buzz-button-disabled:not(:disabled) {
  cursor: pointer;
}

.buzz-button-throttled {
  cursor: not-allowed !important;
}

.final-jeopardy-player-controls {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 5px;
  justify-content: center;
  align-items: stretch;
}

.final-jeopardy-control-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
}
.final-jeopardy-control-row button {
  flex: 1;
  align-self: stretch;
}
.final-jeopardy-control-row input {
  margin-left: 5px;
  flex: 5;
}

div.moderator-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 2;
  margin: 5px;
  align-items: stretch;
}

div.moderator-controls-inner {
  flex: 6;
  display: flex;
  flex-direction: row;
  margin: 10px;
}

div.moderator-controls-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.eval-button-correct {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
  flex: 1;
  background-color: green;
  color: white;
  border: 2px solid black;
}
.eval-button-correct:disabled {
  background-color: gray;
}
.eval-button-correct:not(:disabled) {
  cursor: pointer;
}
.eval-button-correct:hover:not(:disabled) {
  background-color: lightgreen;
}

.eval-button-incorrect {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
  flex: 1;
  background-color: darkred;
  color: white;
  border: 2px solid black;
}
.eval-button-incorrect:disabled {
  background-color: gray;
}
.eval-button-incorrect:not(:disabled) {
  cursor: pointer;
}
.eval-button-incorrect:hover:not(:disabled) {
  background-color: red;
}

.eval-button-skip {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
  flex: 1;
  background-color: coral;
  color: white;
  border: 2px solid black;
}
.eval-button-skip:disabled {
  background-color: gray;
}
.eval-button-skip:not(:disabled) {
  cursor: pointer;
}
.eval-button-skip:hover:not(:disabled) {
  background-color: orange;
}

.eval-button-enable-buzzer {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
  flex: 1;
  background-color: lightskyblue;
  color: black;
  border: 2px solid black;
}
.eval-button-enable-buzzer:disabled {
  background-color: gray;
}
.eval-button-enable-buzzer:not(:disabled) {
  cursor: pointer;
}
.eval-button-enable-buzzer:hover:not(:disabled) {
  background-color: lightblue;
}

.eval-button-reveal-question {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
  flex: 1;
  background-color: #c55757;
  color: black;
  border: 2px solid black;
}
.eval-button-reveal-question:disabled {
  background-color: gray;
}
.eval-button-reveal-question:not(:disabled) {
  cursor: pointer;
}
.eval-button-reveal-question:hover:not(:disabled) {
  background-color: #ad3c3c;
}

.eval-button-lock-answers {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
  flex: 1;
  background-color: #b357c5;
  color: black;
  border: 2px solid black;
}
.eval-button-lock-answers:disabled {
  background-color: gray;
}
.eval-button-lock-answers:not(:disabled) {
  cursor: pointer;
}
.eval-button-lock-answers:hover:not(:disabled) {
  background-color: #9b3cad;
}

button.new-board-button {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
  flex: 1;
  margin: 10px;
}
button.new-board-button:disabled {
  background-color: gray;
}
button.new-board-button:not(:disabled) {
  cursor: pointer;
}
button.new-board-button:hover {
  background-color: #CCC;
}

span.player-name {
  font-weight: bold;
  font-style: italic;
}

div.current-stats-group {
  flex: 2;
  display: flex;
  flex-direction: column;
}

div.current-stats-group > p {
  font-size: small;
}

.new-board-modal {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 25%;
  right: 25%;
  padding: 20px;
  background-color: #EEE;
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}
.new-board-modal .bottom-buttons {
  align-self: flex-end;
  display: flex;
  flex-direction: row;
}
.new-board-modal .bottom-buttons button {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
}
.new-board-modal .bottom-buttons button:disabled {
  background-color: gray;
}
.new-board-modal .bottom-buttons button:not(:disabled) {
  cursor: pointer;
}
.new-board-modal .bottom-buttons button:hover {
  background-color: #CCC;
}
.new-board-modal fieldset {
  flex: 1;
  margin: 10px;
}
.new-board-modal ul {
  list-style-type: none;
  padding-left: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}
.new-board-modal ul li {
  font-size: smaller;
  margin: 0px;
}
.new-board-modal ul .option-label {
  padding-bottom: 3px;
  padding-top: 10px;
}
.new-board-modal ul .option-label:first-child {
  padding-top: 3px;
}
.new-board-modal h3 {
  margin: 0px;
}

.adjust-score-modal {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 25%;
  right: 25%;
  padding: 20px;
  background-color: #EEE;
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}
.adjust-score-modal .bottom-buttons {
  align-self: flex-end;
  display: flex;
  flex-direction: row;
}
.adjust-score-modal .bottom-buttons button {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-left: 5px;
  margin-right: 5px;
  padding: 4px 8px 4px 8px;
}
.adjust-score-modal .bottom-buttons button:disabled {
  background-color: gray;
}
.adjust-score-modal .bottom-buttons button:not(:disabled) {
  cursor: pointer;
}
.adjust-score-modal .bottom-buttons button:hover {
  background-color: #CCC;
}
.adjust-score-modal fieldset {
  flex: 1;
  margin: 10px;
}
.adjust-score-modal ul {
  list-style-type: none;
  padding-left: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}
.adjust-score-modal ul li {
  font-size: smaller;
  margin: 0px;
}
.adjust-score-modal ul .option-label {
  padding-bottom: 3px;
  padding-top: 10px;
}
.adjust-score-modal ul .option-label:first-child {
  padding-top: 3px;
}

.players-list {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: flex-start;
  list-style-type: none;
  padding-left: 0px;
  margin: 5px;
}

.players-list-entry {
  flex: 1;
  border: 1px solid black;
  margin: 10px;
  padding: 10px;
  background-color: #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.players-list-entry-active {
  background-color: #7676d1;
}

.players-list-entry-controller {
  background-color: skyblue;
}

.players-list-entry-moderator:hover {
  cursor: pointer;
  background-color: #ccc;
  transition: background-color 0.2s ease 0s;
}

.players-list-entry-name {
  font-size: larger;
  padding-top: 5px;
  padding-bottom: 5px;
  overflow-x: auto;
}

.timer {
  flex: 1;
  display: flex;
  flex-direction: row;
  background-origin: 1px solid black;
  background-color: #060CE9;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
.timer .segment {
  flex: 1;
  border: 1px solid black;
  margin: 3px;
  background-color: #EEE;
}
.timer .segment-active {
  flex: 1;
  border: 1px solid black;
  margin: 3px;
  background-color: darkred;
}

div.board {
  flex: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  margin: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  position: relative;
  background: #060CE9;
  border: 2px solid black;
}

div.category {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
}

div.category-title {
  flex: 1;
  border: 1px solid black;
  border-bottom: 3px solid black;
  padding: 5px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: #DCF9FF;
  font-family: "Helvetica Compressed", Helvetica, sans-serif;
  text-shadow: 2px 2px black;
}

div.category-commentary-invis {
  display: none;
}

div.square {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  padding: 3px;
}

div.square.dollar-display {
  cursor: pointer;
}

.dollar-display {
  color: goldenrod;
  font-family: "Helvetica Compressed", Helvetica, sans-serif;
  font-size: 200%;
  font-weight: bolder;
  text-shadow: 2px 2px black;
  white-space: nowrap;
}

.dollar-display-negative {
  color: red;
}
.dollar-display-negative:before {
  content: "-";
}

.clue-panel-hidden {
  display: none;
}

div.clue-panel {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  border: 2px solid black;
  color: white;
  font-family: "ITC Korinna", serif;
  background-color: #060CE9;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  align-items: center;
  text-shadow: 2px 2px black;
}

div.clue-panel-dd {
  background: linear-gradient(254deg, #060ce9, #066b6a, #e97b06);
  background-size: 600% 600%;
  animation: DailyDoubleAnim 5s linear infinite;
}

@keyframes DailyDoubleAnim {
  0% {
    background-position: 0% 65%;
  }
  50% {
    background-position: 100% 36%;
  }
  100% {
    background-position: 0% 65%;
  }
}
div.clue-panel-category-ident {
  padding-top: 5px;
  padding-left: 5px;
  flex: 1;
  align-self: flex-start;
}

div.clue-panel-clue-text {
  flex: 4;
  width: 80%;
  text-transform: uppercase;
  font-size: x-large;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.daily-double-input {
  flex: 4;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
div.daily-double-input .labels {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
div.daily-double-input input[type=range] {
  width: 100%;
}
div.daily-double-input button {
  border: 1px solid black;
  transition: background-color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
  margin-top: 15px;
  border: 1px solid black;
  border-radius: 5%;
  padding: 5px;
}
div.daily-double-input button:disabled {
  background-color: gray;
}
div.daily-double-input button:not(:disabled) {
  cursor: pointer;
}

div.clue-panel-answer {
  flex: 1;
  padding-bottom: 5px;
}

.toolbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #DDD;
  margin: 5px;
  margin-bottom: 0px;
  padding-left: 5px;
  border: 1px solid black;
}
.toolbar .player-name {
  font-size: smaller;
  font-weight: bold;
  padding-bottom: 2px;
  padding-top: 2px;
}
.toolbar .dropdown-container {
  display: inline-block;
  position: relative;
}
.toolbar .dropdown-container .dropdown-toggle {
  background-color: #CCC;
  cursor: pointer;
  border: none;
  height: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
.toolbar .dropdown-container .dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
  background-color: #DDD;
  border: 1px solid black;
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  text-align: center;
  white-space: nowrap;
  width: auto;
}
.toolbar .dropdown-container .dropdown ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.toolbar .dropdown-container .dropdown ul li {
  padding: 5px;
  cursor: pointer;
}
.toolbar .dropdown-container .dropdown ul li:hover {
  background-color: #CCC;
}

div.final-jeopardy {
  flex: 3;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.final-jeopardy-category {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.final-jeopardy-question {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 5px;
}

.final-jeopardy-answer {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 5px;
}

.final-jeopardy-player-display {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  overflow-y: auto;
  list-style-type: none;
  padding-left: 0px;
  margin: 5px;
}
.final-jeopardy-player-display li {
  border: 1px solid black;
  margin: 10px;
  padding: 10px;
  background-color: #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.final-jeopardy-player-display li.selected {
  background-color: skyblue;
}

.player-avatar-small {
  width: 75px;
  height: 75px;
  padding: 3px;
}

.final-jeopardy-info-revealed {
  color: darkgreen;
}

.final-jeopardy-info-hidden {
  color: darkred;
}

div.game {
  height: 100%;
  user-select: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

div.game-left-panel {
  flex: 3;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

div.game-right-panel {
  flex: 2;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

html {
  background-color: #EEE;
  line-height: 1.15;
  font-size: large;
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: sans-serif;
}

#root {
  width: 100%;
  height: 100%;
}

div.no-connection-msg {
  width: 100%;
  height: 100%;
  display: flex;
  line-height: 100%;
  justify-content: center;
  align-items: center;
}

input {
  padding: 5px;
  border: 1px solid black;
  border-radius: 2px;
  margin-right: 5px;
  outline: 0;
}

/*# sourceMappingURL=index.css.map */
