.tabHeaders {
    max-width: 800px;
}
.tabHeaders ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
}
.tabHeaders ul li {
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    background: #bdbdbd2f;
    padding: 5px 7px;
    margin-right: 3px;
    cursor: pointer;
    width: -webkit-fill-available;
    transition: border 300ms ease-out;
    border-bottom-right-radius: 4px;
}
.tabHeaders .active {
    border-color: var(--text);
    background-color: var(--background-soft);
    font-weight: bold;
}
.tabItem {
    max-height: 0px;
    white-space: nowrap;
    overflow-x: scroll;
}
.tabItem.selected {
    max-height: 1000px;
}