* {
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    color: rgb(64,64,64);
    padding: 0;
    margin: 0;
  }
  
  table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    background: white;
  }

  #frame {
    padding: 3em;
  }
  
  th, td {
    border: 1px solid lightgray;
    padding: 8px; 
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  
  }
  
  th {
    background: teal;
    color: white;
    text-transform: uppercase;
    font-weight: normal;
  }
  
  table tr:first-child td {
    border-top: none;
  }
  
  .container {
    background: tan;
    width: 100%;
    padding: 24px;
    height: 300px;
  }
  
  .tWrap {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    &__head {
      flex: 0 0 37px;
      overflow-y: scroll;
    }
    
    &__body {
      overflow-y: scroll;
    }
  }