/* Github Tables:
 * Based on: https://gist.github.com/tuzz/3331384
 */

.table {
  border-spacing: 0;
  border-collapse: collapse;
  width: max-content;
  max-width: 100%;
  overflow: auto;
}

.table, tr {
  border-top: 1px solid #cccccc;
  background-color: white;
  margin: 0;
  padding: 0;
}

.table, tr:nth-child(2n) {
  background-color: #f8f8f8;
}

.table, tr th {
  font-weight: bold !important;
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0 !important;
  padding: 6px 13px !important;
}

.table, tr td {
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0 !important;
  padding: 6px 13px !important;
}

.table, tr th :first-child, table tr td :first-child {
  margin-top: 1rem !important;
  padding: 0;
}

.table, tr th :last-child, table tr td :last-child {
  padding: 0;
  margin-bottom: 1rem !important;
}
