.react-secondary-tabs {
    background-color: #F8FAFB;
    color: var(--primary-text, black);
    border: 1px solid rgb(218 208 234 / 4%);
    padding: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    width: max-content;
    margin-bottom: 10px;
}

.react-secondary-tabs .react-secondary-tab {
    display: block;
    flex: 1 1 0px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 6px !important;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    list-style: none;
}

.react-secondary-tabs .react-secondary-tab-active {
    background-color: var(--new-primary-color);
    color: white;
    border-color: #DAD0EA;
}

.react-secondary-tabs.secondary-tabs-grey {
    height: 36px;
    background-color: #E2E0ED;
    border-radius: 10px !important;
    margin: auto !important;
}

.react-secondary-tabs.secondary-tabs-grey .react-secondary-tab {
    padding: 0px 35px;
    color: #4E4E4E;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin: auto !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 4px);
    width: calc(100% - 4px);
}

.react-secondary-tabs.secondary-tabs-grey .react-secondary-tab-active {
    color: #333333;
    background-color: white;
    border: 1px solid #C1BFD9;
    margin: auto !important;
}