.tabs {
    display: flex;
}

.tabs .tab{
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 1rem;
    margin: 0;
    background-color: transparent;
    color: var(--color-on-background);
    border-bottom: 3px solid transparent;
}

.tabs .tab:first-child {
    border-top-left-radius: 0.5rem;
}

.tabs .tab:last-child {
    border-top-right-radius: 0.5rem;
}

.tabs .tab.selected{
    border-bottom: 3px solid var(--color-on-background);
}

.tabs .tab:hover{
    background-color: var(--color-background-hover);
}
@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
    .tabs {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .tabs .tab {
        flex: 0 0 auto;
        padding: 0.8rem 0.9rem;
        white-space: nowrap;
    }
}
