#quiz {
  text-align: center;
}
.title {
  text-align : center;
  font-size  : 1.3em;
  color      : orange;
  font-weight: bold;
}
#results {
  margin: 1em;
  text-align: center;
}
table {
  display: inline-block;
}
table th {
  background-color: orange;
  color           : #fff;
  min-width       : 6em;
}
table tbody td {
  border-bottom: 1px solid #ddd;
}


#questionContainer {
  font-size  : 1.3em;
  font-weight: bold;
}
  #questionIdx {
    display      : inline-block;
    color        : orange;
    padding-right: 1em;
  }
  #questionLabel {
    display: inline-block;
  }
#image {
  max-width : 100%;
  padding   : 10px;
  border    : 1px solid #bbb;
  box-shadow:  5px 5px 10px #888888;
  margin    : 1em;
  text-align: center;
}
  img#question {
    max-width: 100%;
    max-height: 35em;
    display: inline-block;
  }
#choices {
  text-align: left;

}
  #choices .choiceResult {
    border          : 1px solid orange;
    margin-bottom   : 5px;
    border-radius   : 5px;
    display         : flex;
    align-items     : center;
  }
  #choices .choiceResult.good {
    border-color    : #008000;
    background-color: #D0FFE0;
  }
  #choices .choiceResult div {
    padding         : 0.5em;
    display         : inline-block;
  }
    #choices .choiceResult.good .letter {
      background-color: #008000;
      color           : #fff;
    }
    #choices .choiceResult .letter {
      flex            : initial;
      background-color: orange;
    }
    #choices .choiceResult .label {
      flex            : auto;
    }
    #choices .choiceResult .details {
      flex            : initial;
      background-color: red;
      border-radius   : 30px;
      font-weight     : bold;
      text-align      : center;
      color           : #fff;
      width           : 1em;
      height          : 1em;
      padding         : 3px;
      margin          : 5px;
    }
#buttons {
  margin-top          : 2em;
  text-align          : center;
}
#buttons a {
  margin-right        : 1em;
}
