/* Style the tab */
.tab {
    overflow: hidden;
    background-color: #3e3e3e;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: #7c7c7c;
    float: left;
    width: 50%;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    height: 3em;
    display: inline-block;


}


/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #4e4e4e;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #373737;
}

/* Style the tab content */
