/* Style the tab */
.tab_new {
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}

/* Style the buttons inside the tab */
.tab_new button {
    width: 100%;
    border-radius: 5px;
    background-color: #F2F2F2;
    /* float: left; */
    border: none;
    outline: none;
    cursor: pointer;
    padding: 13px 15px;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Change background color of buttons on hover */
.tab_new button:hover {
    background-color: #27AE60;
    color: #fff;
}

/* Create an active/current tablink class */
.tab_new button.active {
    background-color: #27AE60;
    color: #fff;
}

/* Style the tab content */
.tabcontent_new {
    display: none;
    padding: 6px 0;
    /* border: 1px solid #ccc; */
    /* border-top: none; */
}