/*
 * _tables.scss
 */


/* Table Title */

.table-title
{
  /* margin-bottom: 16px; */
  border-bottom-width: 1px;

  font-size: 1.2rem;
  text-transform: none;
  text-align: right;
}


/* Tables */

table
{
  &.table.table-width-auto
  {
    width: auto;
  }

  thead tr th,
  tr th
  {
    font-weight: var(--font_weight_bold);
    text-transform: uppercase;

    &.width-date
    {
      width: 215px;
      min-width: 215px;
    }

    &.width-label
    {
      width: 215px;
      width: 250px;
      max-width: 250px;
      box-sizing: border-box;
    }

    &.width-money
    {
      width: 170px;
      min-width: 170px;
    }

    &.width-text
    {
      width: 200px;
      min-width: 200px;
    }
  }

  &:not(.table-regular-font) tr td
  {
    font-size: .9rem;
  }

  tr td a.btn-sm,
  tr td a.btn-sm:link,
  tr td a.btn-sm:visited
  {
    font-size: .8rem;
  }
}


/* Custom table */
