html, body {
    font-family: 'Roboto', 'Helvetica', sans-serif;
  }
  
  #user-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-left: 10px;
    justify-content: flex-end;
    padding-right: 10px;
  }
  #user-container #user-pic {
    top: -3px;
    display: inline-block;
    background-image: url('/images/profile_placeholder.png');
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    background-size: 40px;
    border-radius: 20px;
  }
  #user-container #user-name {
    font-size: 16px;
    line-height: 36px;
    padding-right: 10px;
    padding-left: 20px;
  }
  textarea#debug {
    width: 90%;
    resize: both;
  }

  .letter {
    background: black;
    color: white;
    font-size: xx-large;
    display: grid;
    padding: .5rem;
    margin: .5rem;
    width: 4rem;
    height: 6rem;
    line-height: normal;
    text-align: center;
    grid-template-rows: 1fr 2fr 1fr;
  }
  
  .more-info, .player-info {
    font-size: small;
  }

  .player-info {
    grid-row: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
  }

  .let {
    grid-row: 2;
    text-align: center;
  }

  .more-info {
    grid-row: 3;
    text-align: right;
  }

  .player-pic {
    display: inline-block;
    background-image: url('/images/profile_placeholder.png');
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    background-size: 40px;
    border-radius: 20px;
    vertical-align: middle;
  }

  .letterbox {
    display: flex;
    flex-wrap: wrap;
  }

  table:not(.table), table:not(.table) td, table:not(.table) th {
    border: 1px solid;
    padding: .2em;
  }

  table.diff-table, table.diff-table tr, table.diff-table td {
    padding: .1em;
    border: none;
  }

  table.diff-table td + td {
    border-left: 1px solid lightgray;
  }

  #hand {
    background: lightgray;
    min-height: 100px;
    min-width: 1em;
    margin: 1em;
  }

  .hand-input {
    background: inherit;
    width: 1em;
    font-size: xx-large;
    border: none;
  }

  .sortable-ghost .hand-input {
    color: white;
  }
  
  .letter.hand {
    background: white;
    color: black;
  }

  .sortable-ghost, .letter.hand.sortable-ghost {
    background: blue;
  }

  #word-guess {
    background: lightgray;
    min-height: 100px;
    min-width: 1em;
    margin: 1em;
  }

  #tokens {
    font-size: large;
  }

  .green-token {
    color: green;
  }
  .red-token {
    color: red;
  }
    
  .mdl-layout__content {
    flex-shrink: 0;
  }

  #current-letter {
    font-weight: bold;
  }

  .in-game {
    font-weight: bold;
  }

  .not-in-game {
    color: gray;
  }
  
  .letter-info {
    font-size: large;
  }

  .clue-word {
    white-space: nowrap;
  }

  .clue .player {
    font-weight: bold;
  }

  .player[data-index="0"] {
    color: red;
  }

  .player[data-index="1"] {
    color: green;
  }

  .player[data-index="2"] {
    color: blue;
  }

  .player[data-index="3"] {
    color: purple;
  }

  .player[data-index="4"] {
    color: brown;
  }

  .player[data-index="5"] {
    color: orange;
  }

  .clue .bonus {
    font-style: italic;
  }

  .wrong {
    color: red;
  }
  .correct {
    color: green;
  }

  .word-correct {
    text-align: center;
  }

  .notes {
    width: 6em;
    border: none;
    background: none;
  }

  #react-clues .notes {
    width: 100%;
  }

  .ref {
    display: none;
  }
  
  .clue:hover .ref {
    display: inline
  }

  .navbar {
    background: lightskyblue;
  }

  #clue {
    width: 8em;
  }

  html, body, #content {
    min-height: 100vh;
  }

  .wild:not(.letter) svg.bi {
    margin-left: 1px;
    vertical-align: baseline;
    font-size: small;
  }

  .word-correct {
    font-size: xx-large;
  }

  .card {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  svg.bi {
    pointer-events: none;
  }

  .other-letters {
    color: gray;
  }

  #clue {
    border: 1px solid #CCC;
    min-height: 2em;
    display: inline-block;
    vertical-align: middle;
    min-width: min-content;
  }

  .card-header {
    font-weight: bold;
  }

  ul#game-log li.fade {
    transition: all 0.4s ease-out;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  ul#game-log li.fade.show {
    height: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }
