// Base style
@import "base/variables";

// Layout
@import "document/layout";
@import "document/typography";

.table-compact{
  white-space: nowrap;
  width: 1%;

  > :not(caption) > * > * {
    padding-left: $table-cell-padding;
    padding-right: $table-cell-padding;
  }
}

.invoice-table {
  @extend .table, .table-bordered, .table-sm, .table-compact;
}

.invoice-title {
  @extend .text-center;
  font-size: 5.2em;
  font-weight: bold;
}

.table {
  thead {
    th {
      @extend .text-center;
    }
  }
}
