.app .table{
  display: grid;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  grid-template-columns: auto min-content min-content min-content;
  grid-template-rows:auto;
}

.app .table-cell-header{
  font-weight: 700;
  text-transform: uppercase;
}

.app .table-cell-header, .app .table-cell{
  justify-self: center;
  align-self: stretch;
  align-items:center;
  text-wrap: nowrap;
  padding:15px;
  width:calc(100% - 30px);
  display: flex;
  justify-content: center;
}

.app .table>div:nth-child(8n+1),
.app .table>div:nth-child(8n+2),
.app .table>div:nth-child(8n+3),
.app .table>div:nth-child(8n+4)
{
  background: #f5f5f509;
  }


.app .table>div:nth-child(8n+1){
  border-radius: 20px 0px 0px 20px;
}
.app .table>div:nth-child(8n+4){
  border-radius: 0px 20px 20px 0px;
}

.app .first{
  justify-self: start;
  justify-content: start;
}

.app .call-agent{
  display:flex;
  flex-direction:row;
  column-gap:15px;
  text-align:left;
  align-items:center;
}
.app .call-agent img{
  height:40px;
  width:40px;
  border:1px solid white;
  border-radius:20px;
}

@media screen and (max-width: 640px) {
  .app .call-agent img{
    display:none;
  }
  .app .date{
    text-wrap:wrap;
    width:80px;
  }
  .app .first{
    text-wrap:wrap;
  }
}