.tabs-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}
.tab-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 4px 4px 0 0;
    padding: 4px 8px;
    background-color: transparent;
    color: #2c3338;
    border: 1px #ddd solid;
    border-bottom-color: transparent;
}
.tab-title.active {
    background-color: #ddd;
    border-bottom-color: #ddd;
}
.tab-title input {
    border: none;
    background: transparent;
    font-weight: bold;
    outline: none;
    width: 100px;
}
.remove-tab {
    margin-left: 8px;
    background: transparent;
    color: inherit;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: color 0.1s; 

    &:hover {
        color: red;
    }
}
.tab-content {
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    border-radius: 0 4px 4px 4px;
}