.cb-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius);
    background: #0a0a0f;
    overflow: hidden;
}

.cb-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    padding: 8px 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.cb-btn {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s, color 0.12s;
    flex-shrink: 0;
}
.cb-btn:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.cb-btn.cb-btn--ok {
    border-color: #22c55e;
    color: #22c55e;
}

.cb-body {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

.cb-editor {
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 16px;
    background: transparent;
    border: none;
    outline: none;
    resize: none;
    color: #e2e8f0;
    font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
    font-size: 13px;
    line-height: 1.7;
    tab-size: 2;
    box-sizing: border-box;
}

.cb-editor::placeholder {
    color: rgba(255,255,255,0.2);
}
