.table {
  color: inherit;

  thead {
    th {
      border-width: $table-border-width;
      background: $min-black;
      text-transform: uppercase;
      font-size: $h6-font-size;
      font-weight: 600;
    }
  }

  th {
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-weight: 400;
    color: $text-muted-light;
    white-space: nowrap;
  }
}

.table-nowrap {
  th, td {
    white-space: nowrap;
  }
}


.table-md {
  th,
  td {
    padding: .5rem;
  }
}

.table-vcenter {
  td,
  th {
    vertical-align: middle;
  }
}

.table-center {
  td,
  th {
    text-align: center;
  }
}
