@import "variables";

.report-page {
  h2 {
    font-size: 18px;
    background-color: $report-background-report;
    color: white;
    line-height: 27px;
    padding: 0 2px;
  }

  .table {
    table-layout: fixed;

    tr th {
      background-color: $report-background-be;
      padding: 4px;
    }

    tr {
      > th,
      > td {
        &.date {
          width: 90px;
        }

        &.amount {
          // TODO: style amount column
        }
      }
    }

    td {
      padding: 2px 4px;
      border-top: none;
    }
  }
}
