/* Style the tab */
.tab {
    float: left;
    /* background-color: #f1f1f1; */
    width: 100%;
    margin-bottom: 25px;
}

/* Style the buttons inside the tab */
.tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 10px 20px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    padding: 10px 25px;
    border-left: 3px solid #f1c40f;
    background: rgba(0, 0, 0, 0.5) !important;
    color:#c5dcf5;
}

/* Create an active/current "tab button" class */
.tab button.active {
    background: rgba(0, 0, 0, 0.5) !important;
    border-left: 3px solid #f1c40f;
    color:#c5dcf5;
}

/* Style the tab content */
.tabcontent {
    float: left;
    /* padding: 0px 12px; */
    width: 100%;
    border-left: none;
    min-height: 300px;
}