
.content-head{
  display:flex;
  justify-content:center;
}

.content-table{
  border-collapse: collapse;
  font-size: 0.9em;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr{
  background-color: #009879;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.content-table thead td{
  padding: 12px 10px;
}

.content-table tbody td{
  padding: 12px 10px;
}

.content-table tbody tr{
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even){
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type{
  border-bottom: 2px solid #009879;
}

/* 768px and smaller screen sizes */
@media (max-width:768px){

  .content-table tbody td{
    font-size:12px;
  }
  
  /* Division */
  .content-head{
    display:block;
    overflow-x: scroll;
  }
  
}