/* Tampilan Kertas A4 untuk Rich Editor di Surat Template */
.a4-editor-wrapper {
    /* Bagian luar kertas (Meja kerja) */
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    overflow: hidden;
}
.dark .a4-editor-wrapper {
    background-color: #1f2937;
}

/* Membungkus textarea editor */
.a4-editor-wrapper .fi-fo-rich-editor-editor {
    padding: 2rem;
    display: flex;
    justify-content: center;
    background: transparent;
}

/* Tampilan Kertas itu sendiri (ProseMirror / Tiptap) */
.a4-editor-wrapper .tiptap.ProseMirror {
    background-color: #ffffff !important; 
    color: #000000 !important; /* Teks harus hitam di kertas */
    width: 210mm; /* Lebar kertas A4 */
    min-height: 297mm; /* Tinggi kertas A4 */
    max-width: 100%;
    margin: 0 auto;
    padding: 2.54cm !important; /* Margin penulisan layaknya Normal di Ms. Word */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 0 !important; /* Kertas tidak melengkung */
    border: 1px solid #d1d5db !important;
}

/* Memastikan di dark mode kertas tetap putih karena cetakan PDF selalu putih */
.dark .a4-editor-wrapper .tiptap.ProseMirror {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #374151 !important;
}
