.nektar-tabs {
    position: relative;
    max-width: 100%;
}

    .nektar-tabs .nektar-tabs-header {
        display: flex;
        gap: 8px 16px;
        list-style: none;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #EAECF0;
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: #98A2B3 #EAECF0;
        margin-bottom: 56px;
    }

[theme="dark"] .nektar-tabs .nektar-tabs-header {
    border-bottom: 1px solid #344054;
}

.nektar-tabs .nektar-tabs-header::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.nektar-tabs .nektar-tabs-header::-webkit-scrollbar-thumb {
    background-color: #98A2B3;
    border-radius: 2px;
}

    .nektar-tabs .nektar-tabs-header::-webkit-scrollbar-thumb:hover {
        background-color: #EAECF0;
    }

.nektar-tabs .nektar-tabs-header li button {
    border: none;
    background: transparent;
    color: #768094;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 0 4px 9px 4px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition-duration: 0.3s;
    white-space: nowrap;
    outline: none;
}

[theme="dark"] .nektar-tabs .nektar-tabs-header li button {
    color: #9AA3B3;
}

.nektar-tabs .nektar-tabs-header li button[data-active="true"] {
    color: #1F2024;
    border-bottom: 2px solid #1F2024;
}

[theme="dark"] .nektar-tabs .nektar-tabs-header li button[data-active="true"] {
    color: #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.nektar-tabs.blue .nektar-tabs-header li button[data-active="true"] {
    color: #1438AF;
    border-bottom: 2px solid #1438AF;
}

.nektar-tabs .nektar-tabs-header li button:hover {
    color: #43474D;
    border-bottom: 2px solid #43474D;
}

[theme="dark"] .nektar-tabs .nektar-tabs-header li button:hover {
    color: #EAECF0;
    border-bottom: 2px solid #EAECF0;
}

.nektar-tabs .nektar-tabs-header li button:focus-visible {
    color: #6F81D6;
    border-bottom: 2px solid #6F81D6;
}

[theme="dark"] .nektar-tabs .nektar-tabs-header li button:focus-visible {
    color: #1438AF;
    border-bottom: 2px solid #1438AF;
}

.nektar-tabs .nektar-tabs-section {
}

    .nektar-tabs .nektar-tabs-section .nektar-tab-item {
        display: none;
    }

        .nektar-tabs .nektar-tabs-section .nektar-tab-item[data-active="true"] {
            display: block;
        }
