/* You can add custom CSS here if needed, beyond Tailwind. */
/* For example, specific TinyMCE editor customizations */
.wp-editor-wrap {
    border-radius: 0 !important; /* Ensure no default rounded corners */
    border: 1px solid #d1d5db !important; /* Tailwind gray-300 equivalent */
}
.wp-editor-area {
    border-radius: 0 !important;
    border: none !important;
}

/* Remove max-width limitation on forms */
#author-editor-form {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Ensure all form elements take full width */
#author-editor-form input,
#author-editor-form select,
#author-editor-form textarea {
    max-width: 100% !important;
}

