/* Style the tab */
.tab {
    overflow: hidden;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: #3CCAF4;
    float: left;
    outline: none;
    cursor: pointer;
    padding: 20px 25px;
    font-size: 25px;
    width: 50%;
    color: black;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #2B3EDE;
    color: white;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}