body {
    font-family: Sans-serif;
    padding: 20px;
}
h1, h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #ccc;
}
h2 {
    font-size: 20px;
    color: #999;
}
tr:nth-child(odd) {
    background: #efefef;
}
td, th {
    padding: 12px;
    text-align: left;
}
th {
    background: #00497c;
    color: white;
}
th[data-tabbedTable] {
    background: #0076c8;
}
.tabbedTable-labels {
    float: right;
}
label {
    background: black;
    color: white;
    border-radius: 5px 5px 0 0;
    padding: 12px 15px 10px 15px;
    margin-left: 5px;
    display: inline-block;
    cursor: pointer;
    float: left;
}
label.tabbedTable-label--active {
    background: #0076c8;
}
.tabbedTable {
    width: 100%;
    margin: 0 0 20px 0;
}
body {
    margin: 0;
    background: #f5f5f5;
    font-family: "Poppins", sans-serif;
    line-height: 2em;
  }
  
  .wrapper {
 
    margin: auto;
    margin-top: 80px;
  }
  
  .tab-wrapper {
    text-align: center;
    display: block;
    margin: auto;
  }
  
  .tabs {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  .tab-link {
    margin: 0 1%;
    list-style: none;
    padding: 10px 40px;
    color: #aaa;
    cursor: pointer;
    font-weight: 700;
    transition: all ease 0.5s;
    border-bottom: solid 3px rgba(255, 255, 255, 0);
    letter-spacing: 1px;
  }
  
  .tab-link:hover {
    color: #999;
    border-color: #999;
  }
  
  .tab-link.active {
    color: #333;
    border-color: #333;
  }
  
  .tab-link:nth-of-type(1).active {
    color: #EE6534;
    border-color: #EE6534;
  }
  
  .tab-link:nth-of-type(2).active {
    color: #1790D2;
    border-color: #1790D2;
  }
  
  .tab-link:nth-of-type(3).active {
    color: #EEC63B;
    border-color: #EEC63B;
  }
  
  .content-wrapper {
    padding: 40px 80px;
  }
  
  .tab-content {
    display: none;
    text-align: center;
    color: #888;
    font-weight: 300;
    font-size: 15px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 0.5s ease 1 forwards;
  }
  
  .tab-content.active {
    display: block;
  }
  
  @keyframes fadeIn {
    100% {
      opacity: 1;
      transform: none;
    }
  }

  td.good {
    background: lightgreen;
  }
  td.nogood {
    background: lightcoral;
  }
  td.empty{
    background: lightgray;
  }
  td.article {
    background: lightyellow;
  }