:root {
    --gjs-primary-color: #111827;
    /* Biru modern */
    --gjs-secondary-color: #d1d5db;
    /* Abu muda */
    --gjs-tertiary-color: #60a5fa;
    /* Biru terang */
    --gjs-quaternary-color: #3b82f6;
    /* Biru aksen */
}

.gjs-editor-cont {
    height: 100vh;
}

#ckeditModal {
    position: fixed;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: white;
    border: 1px solid #ccc;
    z-index: 9999;
    display: none;
    flex-direction: column;
}

#ckeditModal textarea {
    flex: 1;
    width: 100%;
}

.gjs-pn-panel,
.gjs-pn-views,
.gjs-pn-buttons,
.gjs-pn-commands,
.gjs-pn-options,
.gjs-pn-devices-c {
    background-color: #111827 !important;
    /* abu tua */
    border-color: #1f2937 !important;
}

/* Tombol ikon dan teks */
.gjs-pn-btn {
    color: #9ca3af !important;
    /* abu muda */
    background-color: transparent !important;
    transition: background 0.3s ease;
}

/* Hover dan aktif */
.gjs-pn-btn:hover,
.gjs-pn-btn.gjs-pn-active {
    background-color: #1e40af !important;
    /* biru tua */
    color: #ffffff !important;
    border-radius: 4px;
}

/* Editor canvas wrapper */
.gjs-cv-canvas {
    background-color: #0f172a !important;
    /* latar belakang hitam kebiruan */
}

/* Title bar (jika kamu pakai custom header) */
.gjs-title {
    color: #60a5fa !important;
    font-weight: 600;
}

#gjs-branding {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #111827;
    color: #60a5fa;
    font-family: 'Inter', sans-serif;
    padding: 3px;
}

.branding-logo {
    height: 48px;
}

.branding-title {
    font-size: .8rem;
    font-weight: 600;
    margin: 0;
    color: #d1d5db;
}

.rich-text-editor {
    min-height: 50px;
    padding: 10px;
    border: 1px dashed #999;
    cursor: text;
}