.rte-wrapper {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.rte-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
    border-bottom: 1px solid #edf2f7;
    background: #f8fafc;
}

.rte-select {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #1f2937;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    min-height: 30px;
}

.rte-btn {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #1f2937;
    border-radius: 6px;
    min-width: 30px;
    min-height: 30px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1.2;
    cursor: pointer;
}

.rte-btn:hover {
    background: #f3f4f6;
}

.rte-editor {
    min-height: 240px;
    padding: 12px 14px;
    outline: none;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
    overflow-y: auto;
}

.rte-editor:focus {
    box-shadow: inset 0 0 0 2px rgba(60, 165, 67, 0.16);
}

.rte-editor blockquote {
    border-left: 4px solid #3CA543;
    margin: 12px 0;
    padding: 8px 12px;
    background: #f8fafc;
    color: #4a5568;
}

.rte-editor h3,
.rte-editor h4 {
    margin: 12px 0 8px;
    font-weight: 700;
}

.rte-editor[contenteditable="false"] {
    background: #edf2f7;
    cursor: not-allowed;
}

.rte-btn:disabled,
.rte-select:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
