/* Content Editor Fullscreen Styles */
.fullscreen-editor {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background: white !important;
    margin: 0 !important;
    padding: 20px !important;
    overflow-y: auto !important;
}

.fullscreen-editor .col-lg-8,
.fullscreen-editor .col-lg-4 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

.fullscreen-editor .col-lg-8 {
    padding: 0 15px !important;
}

.fullscreen-editor .col-lg-4 {
    display: none !important;
}

/* Make TinyMCE editor taller in fullscreen mode */
.fullscreen-editor .tinymce-editor-container {
    min-height: calc(100vh - 300px) !important;
}

.fullscreen-editor .tox-tinymce {
    height: calc(100vh - 300px) !important;
}

/* Ensure the header stays visible in fullscreen */
.fullscreen-editor .card.bg-lightblue2 {
    position: sticky !important;
    top: 0 !important;
    z-index: 100 !important;
    margin-bottom: 20px !important;
}

/* Smooth transitions */
.row {
    transition: all 0.3s ease-in-out;
}

