.tab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* margin-top: 1rem; */
}

.tab-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--grayColor400);
    background-color: var(--baseBgColor);
    padding-top: 0.5rem;
    padding-bottom: 0;
    padding-inline: 1rem;
    text-align: left;
    width: 100%;
    /* font-weight: 500;
    font-size: 0.875rem ;
    line-height: 1.25rem; */
    
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.tab-nav ul {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 1fr));
    gap: 0.25rem;
    justify-content: center; */

    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: -1px;
    width: 100%;
    text-align: start;
    font-size: 0.875rem;
    line-height: 1.2rem;
    letter-spacing: 0.05rem;
    font-weight: 500;
    overflow-x: auto;

    li {
        margin-inline-end: 0.5rem;
        width: fit-content;
    }

    a {
        display: inline-block;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        transition: color 350ms ease-in;
    }
    
    a:hover {
        color: var(--grayColor50);
        /* background-color: var(--hoverBgColor);
        border-radius: 5px;
        padding-inline: 0.5rem; */
        /* border-bottom: none; */
    }
    
}


/* .current-tab {
    color: var(--black);
    background-color: var(--grayColor200);
    border-radius: 5px;
    padding-inline: 0.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
} */

.current-tab {
    color: var(--boneWhite);
    border-bottom: 2px solid var(--grayColor50);
    margin-bottom: 5px;
}

.tab-area {
    /* border: 1px solid var(--primaryBgColor); */
    border-top: 1px;
    border-right: 1px;
    border-left: 1px;
    /* border-bottom: 1px; */
    border-style: dotted;
    border-color: var(--primaryBgColor);
    padding: var(--padding-xs);
    padding-top: var(--padding-base);
}



/* @media (min-width: 768px) {
    .tab-nav ul {
        display: flex;
        flex-direction: row;
        justify-content: start;
    }
} */