/* Basic EditorJS Styling */
.codex-editor__redactor {
    padding-bottom: 50px !important;
}

/* Editor Header Styles */
.ce-block__content h1,
.ce-block__content h2,
.ce-block__content h3,
.ce-block__content h4,
.ce-block__content h5,
.ce-block__content h6 {
    margin-bottom: 1rem;
}

/* Header Levels */
.ce-block__content h2 {
    font-size: 1.5rem !important; /* tw-text-2xl */
    line-height: 2rem !important;
    font-weight: 700 !important; /* tw-font-bold */
    color: #111827 !important; /* tw-text-gray-900 */
    margin-bottom: 1rem !important; /* tw-mb-4 */
}

.ce-block__content h3 {
    font-size: 1.25rem !important; /* tw-text-xl */
    line-height: 1.75rem !important;
    font-weight: 600 !important; /* tw-font-semibold */
    color: #1f2937 !important; /* tw-text-gray-800 */
    margin-bottom: 0.75rem !important; /* tw-mb-3 */
}

.ce-block__content h4 {
    font-size: 1.125rem !important; /* tw-text-lg */
    line-height: 1.5rem !important;
    font-weight: 500 !important; /* tw-font-medium */
    color: #1f2937 !important; /* tw-text-gray-800 */
    margin-bottom: 0.5rem !important; /* tw-mb-2 */
}

/* Paragraph Styles */
.ce-paragraph {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
    color: #4b5563 !important; /* tw-text-gray-600 */
    margin-bottom: 1rem !important; /* tw-mb-4 */
}

/* Output styling */
#output {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
}

#output h5 {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

#output pre {
    margin: 0;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
}

/* Remove margin from last paragraph in prose content */
.tw-prose p:last-child {
    margin-bottom: 0 !important;
} 