.rwd-table {
  margin: 1em auto;
  min-width: 300px;
  width: 100%;
  table-layout: fixed;
  word-break: break-word;
}
.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.rwd-table th {
  display: none;
}
.rwd-table td {
  display: block;
}
.rwd-table td:first-child {
  padding-top: .5em;
}
.rwd-table td:last-child {
  padding-bottom: .5em;
}
.rwd-table td:before {
  content: attr(data-th) ": ";
  content: attr(data-th);
  font-weight: bold;
  width: 6.5em;
  display: inline-block;
}
@media (min-width: 737px) {
  .rwd-table td:before {
    display: none;
  }
}
.rwd-table th, .rwd-table td {
  text-align: center;
}
@media (min-width: 737px) {
  .rwd-table th, .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child, .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child, .rwd-table td:last-child {
    padding-right: 0;
  }
}

.rwd-table {
  background: #34353d;
  color: #fff;
  border-radius: .4em;
  overflow: hidden;
  text-shadow: none;
}
.rwd-table tr {
  border-color: #46637f;
}
.rwd-table th, .rwd-table td {
  margin: .5em 1em;
}
@media (min-width: 737px) {
  .rwd-table th, .rwd-table td {
    padding: 1em !important;
	vertical-align: middle;
  }
}
.rwd-table th, .rwd-table td:before {
  color: inherit;
}

/* Simon delegates table column widths */
@media (min-width: 737px) {
  .simon-table th:nth-child(1),
  .simon-table td:nth-child(1) { width: 4em; }          /* N */
  .simon-table th:nth-child(8),
  .simon-table td:nth-child(8) { width: 5em; }          /* Needs Coach */
  .simon-table th:nth-child(9),
  .simon-table td:nth-child(9) { width: 5em; }           /* Ski Pass */
  .simon-table th:nth-child(10),
  .simon-table td:nth-child(10) { width: auto; }         /* Delegate Comments */
}

/* Mobile: give data labels and content more room */
@media (max-width: 736px) {
  .simon-table td:before {
    width: 7.5em;
  }
}