/* CSS personnalisé pour CKEditor5 */

/* Rendre le header de l'éditeur sticky */
.ck.ck-editor .ck-editor__top {
    position: sticky;
    top: 45px;
    z-index: 1000;
    background-color: white;
    border-bottom: 1px solid #c4c4c4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ck-sticky-panel__content {
    top: 45px !important;
}

/* Assurer que le contenu de l'éditeur s'affiche correctement avec le header sticky */
.ck.ck-editor .ck-editor__main {
    padding-top: 5px;
}
