.editor-tabs {
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    background: #1f242c;
    border-bottom: 1px solid #303846;
    overflow: hidden;
}

.tab-list {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.tab-item {
    height: 34px;
    min-width: 150px;
    max-width: 210px;
    padding: 0 10px;
    border: 0;
    border-right: 1px solid #303846;
    background: #242b35;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-size: 12px;
}

.tab-item:hover {
    background: #2b3441;
}

.tab-item.active {
    background: #111827;
    color: #ffffff;
}

.tab-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tab-close {
    margin-left: auto;
    color: #7f8794;
    font-size: 15px;
}

.tab-close:hover {
    color: #ffffff;
}

.tab-new {
    width: 42px;
    border: 0;
    border-right: 1px solid #303846;
    background: #242b35;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 18px;
}

.tab-new:hover {
    background: #2b3441;
}