/* assets/styles/ckeditor-dark.css */

/* Zone autour de l'éditeur */
.ck.ck-editor {
    color: #f8f9fa;
    background-color: #1e1e1e;
    border: 1px solid #444;
    border-radius: 6px;
}

/* Toolbar (barre d'outils) */
.ck.ck-toolbar {
    background-color: #2c2c2c;
    border-bottom: 1px solid #444;
}

.ck.ck-toolbar .ck-button {
    color: #f8f9fa;
}

.ck.ck-toolbar .ck-button:hover {
    background: #3a3a3a;
}

/* Zone de texte */
.ck.ck-content,
.ck.ck-editor__main .ck-content {
    background-color: #1e1e1e !important;
    color: #f8f9fa !important;
    min-height: 300px;
    line-height: 1.6;
    font-family: "Georgia", serif;
    border-radius: 0 0 6px 6px;
    padding: 1rem;
}

/* Sélection / focus */
.ck.ck-content:focus {
    outline: none;
    border: 1px solid #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

/* Liens visibles */
.ck.ck-content a {
    color: #0d6efd;
}

/* Placeholder en gris */
.ck.ck-content .ck-placeholder {
    color: #888 !important;
}
