.tab-control__container {
    border-bottom: 1px solid var(--people-color-gray-medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.tab-control__container > ul {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
    flex: 1 1 auto;
    min-width: 0;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
}

.tab-control__container > ul::-webkit-scrollbar {
    display: none;
}

.tab-control__container li {
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 12px 20px;
    box-sizing: border-box;
    position: relative;
    min-width: 0;
    max-width: 250px;
    flex-shrink: 0;
}

.tab-control__title {
    position: static;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tab-control__title.active {
    border-bottom: 2px solid var(--people-color-orange);
    font-weight: bold;
    cursor: default;
}

.tab-control__view-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 170px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.tab-control__custom-text {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.tab-control__label-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}