.post-format-toolbar {
    display: flex;
    gap: 4px;
    padding: 6px 0 8px;
    flex-wrap: wrap;
}
.post-format-toolbar--inline {
    padding: 4px 0;
}
.post-fmt-btn {
    min-width: 32px;
    height: 30px;
    padding: 0 8px;
    border: 1px solid var(--border-color, #444);
    border-radius: 6px;
    background: var(--bg-secondary, #1a1a1a);
    color: var(--text-primary, #eee);
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
}
.post-fmt-btn:hover {
    border-color: var(--accent, #1d9bff);
}
.post-editor {
    min-height: 120px;
    max-height: 40vh;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
}
.post-editor:empty::before {
    content: attr(data-placeholder);
    color: var(--text-muted, #888);
    pointer-events: none;
}
.post-editor-source {
    display: none !important;
}
.post-text h3,
.post-editor h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.5em 0 0.25em;
}
.post-text ul,
.post-editor ul {
    margin: 0.35em 0;
    padding-left: 1.25em;
}
.post-text u,
.post-editor u {
    text-decoration: underline;
}
.post-editor--inline {
    border: 2px solid #667eea;
    border-radius: 8px;
    padding: 8px;
    background: rgba(102, 126, 234, 0.1);
    outline: none;
}
