
#promptForm {
  position: relative;
}
#prompt {
  border: 1px solid #aaf;
  color: #33b;
  padding: 2px;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  font-family: 'Roboto', 'Arial', 'monospace';
  font-size: 0.9em;
  font-weight: normal;
}

#resultsTable {
  width: 100%;
  border: 1px solid #ccc;
  font-size: 11pt;
}

/**
 * Styled table from https://dev.to/dcodeyt/creating-beautiful-html-tables-with-css-428l
 */
 .styled-table {
   border-collapse: collapse;
   margin: 25px 0;
   min-width: 400px;
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
 }

 .styled-table thead tr {
   background-color: #39f;
   color: #ffffff;
   text-align: left;
 }

 .styled-table th,
 .styled-table td {
   padding: 10px 12px;
 }

 .styled-table tbody tr {
   border-bottom: 1px solid #dddddd;
 }

 .styled-table tbody tr:nth-of-type(even) {
   background-color: #eef;
 }

 .styled-table tbody tr:last-of-type {
   border-bottom: 2px solid #39f;
 }
