/* Pengaturan Font Dasar */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* Kontainer Tabel agar Responsif */
.table-container { 
    overflow-x: auto; 
}

/* Tombol Hapus Baris */
.delete-row-btn {
    background-color: #ef4444; 
    color: white; 
    border: none;
    border-radius: 50%; 
    width: 24px; 
    height: 24px;
    font-weight: bold; 
    cursor: pointer; 
    line-height: 24px; 
    text-align: center;
    flex-shrink: 0;
}

/* Tombol Bersihkan Blok */
.clear-block-btn {
    background-color: #fee2e2; 
    color: #b91c1c; 
    border: none;
    border-radius: 9999px; 
    padding: 4px 12px;
    font-size: 0.75rem; 
    font-weight: 600; 
    cursor: pointer;
}
.clear-block-btn:hover { 
    background-color: #fecaca; 
}

/* Handle untuk Drag-and-Drop */
.drag-handle {
    cursor: grab;
    text-align: center;
    color: #9ca3af;
    width: 40px;
    flex-shrink: 0;
}

/* Style untuk Item yang Sedang di-drag */
.dragging { 
    opacity: 0.5; 
    background: #f3f4f6; 
}

/* Style untuk Form yang Terkunci */
.form-locked { 
    opacity: 0.5; 
    pointer-events: none; 
}
#form-lock-message { 
    pointer-events: auto; 
}

/* Style untuk Daftar Lampiran */
#attachment-list .attachment-item {
    display: flex; 
    align-items: center; 
    padding: 8px;
    border: 1px solid #e5e7eb; 
    border-radius: 0.5rem;
    margin-bottom: 8px; 
    background-color: white;
}
#attachment-list .attachment-item:hover { 
    background-color: #f9fafb; 
}

/* --- PERBAIKAN UNTUK QUILL EDITOR --- */
.quill-editor-container {
    position: relative;
}
.quill-editor-container .ql-toolbar.ql-snow {
    border-top-left-radius: 0.375rem; 
    border-top-right-radius: 0.375rem;
    border: 1px solid #d1d5db; 
    padding: 8px;
    box-sizing: border-box;
}
.quill-editor-container .ql-container.ql-snow {
    border-bottom-left-radius: 0.375rem; 
    border-bottom-right-radius: 0.375rem;
    border: 1px solid #d1d5db; 
    border-top: 0; 
    min-height: 100px;
    box-sizing: border-box;
    font-size: 1rem;
}
.quill-editor-container .ql-editor { 
    padding: 12px; 
    min-height: 100px;
    height: 100%;
    box-sizing: border-box;
}
.quill-editor-container .ql-editor p::before {
    content: none !important;
}
/* --- AKHIR PERBAIKAN --- */

/* Pratinjau Tanda Tangan */
#signature-preview { 
    max-height: 60px; 
}
