
/* Style the tab */
.tab {
    overflow: hidden;
    border: 0px solid #ccc;
}

/* Style the buttons inside the tab */
.tab button {
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: inherit;
    float: left;
    outline: none;
    cursor: pointer;
    padding: 8px;
    transition: 0.5s;
}

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

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

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    background-color: #eee;
}
