.tabs-container {
    flex-direction: row;
    display: flex;
    width: 100%;
    height: 40px;
    min-height: 40px;
    background-color: #91b1d8;
    position: relative;
    z-index: 100;
    padding-right: 54px;
}

.tabs-container .tabs {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
    height: 100%;
    align-items: center;
}

.tabs-container .tab {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    height: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tabs-container:has(.hidden-tabs-container .tab) .show-hidden-button {
    display: flex;
}

.tabs-container:has(.hidden-tabs-container .tab) {
    padding-right: 0px;
}

.tabs-container .tab .tab-text {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.05em;
    color: #fff;
    white-space: nowrap;
}

.show-hidden-button {
    min-width: 54px;
    max-width: 54px;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hidden-tabs-container {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #154279;
    z-index: 20;
    right: 0;
    top: 100%;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    max-height: 400px;
    overflow-y: auto;
}

.hidden-tabs-container.showed {
    opacity: 1;
    visibility: visible;
}

.tabs-container .tab.active {
    background-color: #154279;
}

.show-hidden-button.active {
    background-color: #154279;
}

.hidden-tabs-container .tab:hover {
    background-color: #91b1d8;
}