.custom-editor-container {
    border: 1px solid #d2d6dc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.custom-editor-toolbar {
    padding: 8px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.custom-editor-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: transparent;
    color: #475569;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.custom-editor-btn:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.custom-editor-btn.active {
    background: #cbd5e1;
    color: #0f172a;
    border-color: #94a3b8;
}

.custom-editor-content {
    min-height: 200px;
    padding: 16px;
    outline: none;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    overflow-y: auto;
}

.custom-editor-content:focus {
    background: #fdfdfd;
}

.custom-editor-separator {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
    margin: 6px 4px;
}
