/* ContentEditable Editor Styles */
.editor-content {
    min-height: 200px;
    outline: none;
}

/* Inline Heading Spans (Used in Editor) */
.editor-h1 {
    font-size: 1.6em;
    font-weight: 800;
    color: #111827;
    display: inline;
    border-bottom: 2px solid #f9a8d4;
}

.editor-h2 {
    font-size: 1.4em;
    font-weight: 700;
    color: #1f2937;
    display: inline;
    border-bottom: 1px solid #f9a8d4;
}

.editor-h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #374151;
    display: inline;
    border-bottom: 1px dashed #f9a8d4;
}

.editor-content blockquote,
.prose blockquote {
    border-left: 4px solid #db2777;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #4b5563;
    background: #fdf2f8;
}

.wikilink {
    background-color: #fdf2f8;
    color: #db2777;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9em;
    border: 1px solid #f9a8d4;
    cursor: text;
    display: inline;
    transition: all 0.2s;
}

.wikilink:hover {
    background-color: #fce7f3;
}

.editor-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.editor-content strong {
    font-weight: 700;
}

.editor-content em {
    font-style: italic;
}

.editor-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.editor-content li {
    margin-bottom: 0.25rem;
}

/* (Consolidated into above Wikilink styles) */

/* Format button active state */
.format-btn-active {
    background-color: #db2777 !important;
    color: white !important;
    border-color: #db2777 !important;
}