/* TinyMCE Container Styling */
.rte-container {
    width: 100%;
    min-height: 200px;
    position: relative;
}

/* Ensure TinyMCE editor fits properly in container */
.rte-container .tox-tinymce {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

/* Focus state for better UX */
.rte-container .tox-tinymce.tox-tinymce--focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Style the statusbar for better UX */
.rte-container .tox-statusbar {
    border-top: 1px solid #ced4da;
    background-color: #f8f9fa;
}

/* Ensure proper auto-resize behavior */
.rte-container .tox-edit-area {
    overflow: visible;
}

/* Form integration */
.rte-container .rte-hidden-input {
    display: none;
}