
.tab-set > .tab-row {
    position: relative;
    /*height: 44px;*/
    background-color: white;
    color: black;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: visible;
    align-items: center;
    margin: 0 3px;
}
.tab-set > .tab-row:first-of-type {
    gap: 3px;
}

.tab-set > .tab-row .action-item{
    /*margin: 0 6px;*/
}

/* Hide scrollbar for Chrome, Safari and Opera */
.tab-set::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.tab-set {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    padding: 0;
    width: 100%;
}

.tab-set .tab {
    height: 44px;
    padding: 0;

    align-items: center;
    overflow: visible;
    /*min-width: 120px;*/
    width: 100%;
    justify-content: center;
}

.tab.tab-highlight {
    font-weight: bold;
}

.tab.tab-highlight .tab-indicator {
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: black;
}

.tab-content {
    display: block;
    padding: 0;

    /*height: calc(100vh - 130px);*/
    overflow-y: scroll;
    width: 100%;
}

.page.connect .tab-content {
    height: 474px;
    display: flex;
    gap: 1rem;
}
/*.tab-row{*/
/*    width: auto;*/
/*    margin: 0 auto;*/
/*}*/
