/* Style the tab */
.tab {
    overflow: hidden;
    width: 85%;
    margin: 0px auto;
    margin-top: 50px;
    padding-bottom: 10px;
    border-radius: 2px;
    display: flex;
    gap: 0px;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, transparent, #ff13ef, transparent) 1;
    user-select: none;

}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 0px;
    transition: 0.3s;
    font-size: 0.85em;
    font-weight: bold;
    color: #fff;
    width: 100%;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: rgba(121, 140, 159, 0.3);
    outline: none;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #798c9f;
    outline: none;
    border-radius: 5px;
    padding: 0px 5px;
}

/* Style the tab content */
.tabcontent {
    display: none;
    border-top: none;
    height: 60%;
    align-items: center;
}

@media (max-width:1000px) {
    .tab {
        margin-top: 0;
    }

    /* .tabcontent {
        height: 46%;
    } */

    .tab button {
        padding: 5px 0px;
    }
}

@media (max-width:420px) {

/* 
    .tabcontent {
        height: 45%;
    } */

    .tab button {
        padding: 5px 5px;
        font-size: 0.55em;

    }
}