.summary-wrapper {
  display: flex;
  flex-direction: column;

  .report-header {
    display: flex;
    justify-content: space-between;
    .report-filters {
      yc-date-range-picker {
        padding-right: 1rem;
        flex-basis: 20%;
        max-width: 15rem;
      }
      yc-typeahead-select {
        flex-basis: 20%;
        max-width: 15rem;
      }
      yc-checkbox-dropdown-filter {
        flex-basis: 25%;
        max-width: 15rem;
      }
      flex-grow: 1;
      display: flex;
    } 
  }

  .report-download {
    align-self: flex-end;
    margin-bottom: 1rem;
  }

  .summary-header {
    background-color: gainsboro;
    padding: .5rem;
    border-radius: 2px;
    font-weight: 600;
  }
  .summary-stat {
    display: flex;
    padding-top: .5rem;
    padding-bottom: .5rem;
    margin-right: 1rem;
    margin-left: 1rem;
    border-bottom: 2px solid gainsboro;

    .summary-stat-name {
      flex-basis: 70%;
    }
    .summary-stat-value {
      flex-basis: 15%;
      text-align: end;
      padding-right: 2rem;
    }

    &.last {
      border-bottom: none;
      .summary-stat-name {
        flex-basis: 85%;
      }
    }
  }

}

.applicant-block {
  padding-left: .7rem;
  a.anchor-tag {
    font-weight: 600;
  }
}