

/* Style the tab */
.tabs {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px 16px;
    transition: 0.3s;
    margin-top: 0;
    margin-left: 0;
    width: 50%;
}

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

/* Create an active/current tab_link class */
.tabs button.active_tab {
    background-color: #ccc;
}

/* Style the tab content */
.tab_container {
    display: none;

    border: 1px solid #ccc;
}
