/* Make the toolbar sticky */
.ck.ck-editor__top {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    background: white;
}

/* Add some padding to the content to prevent it from being hidden under the sticky toolbar */
.ck.ck-editor__main {
    padding-top: 1rem;
}

/* Ensure the sticky toolbar has a nice shadow for better visual separation */
.ck.ck-toolbar {
    border-bottom: 1px solid #ddd !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
