/* Style the tab */
.tab1 {
    overflow: hidden;
    border: 1px solid #fe6637;
    background-color: none;
}

/* Style the buttons inside the tab */
.tab1 button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    color:  #050100;
}

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

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

/* Style the tab content */
.tabcontent1 {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}