/* Style the tab */
.tab {
    float: left;
    width: 25%;
    height: 450px;
    margin-right: 50px;
    background-color: #f1f1f1;
}
  
/* Style the buttons that are used to open the tab content */
.tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 20px 18px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.4s;
    border-left: 3px solid crimson;
}
  
/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
    border-left: 11px solid crimson;
    border-right: 1px solid crimson;
}
  
/* Create an active/current "tab button" class */
.tab button.active {
    background-color: #ccc;
    border-left: 11px solid crimson;
}
  
/* Style the tab content */
.tabcontent {
    width: 100%;
    min-height: 450px;
    border-bottom: 4px solid crimson;
}

.tabcontent h2 {
    margin-bottom: 30px;
}

.tabcontent p {
    padding-left: 55px;
    display: inline;
}

table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    text-align: left;
    padding: 8px;
  }
  
  tr:nth-child(even){background-color: #f2f2f2}
  
  th {
    background-color: crimson;
    color: white;
  }