         /* Modal CRV : occupe plus de place à l'écran */
         #modalCrvCreate .modal-dialog {
             max-width: 80%;
             /* élargit le modal */
             height: 90vh;
             /* limite max hauteur */
         }

         #modalCrvCreate .modal-content {
             height: 100%;
             display: flex;
             flex-direction: column;
         }

         #modalCrvCreate .modal-body {
             flex: 1;
             overflow-y: auto;
             /* scroll si TinyMCE déborde */
             max-height: calc(90vh - 150px);

         }

         /* Augmente la taille du modal CRV */
         #modalCrvCreate .modal-dialog {
             max-width: 80%;
             height: 90vh;
             /* max hauteur relative à l'écran */
         }

         #modalCrvCreate .modal-content {
             height: 100%;
             display: flex;
             flex-direction: column;
         }

         #modalCrvCreate .modal-body {
             flex: 1;
             overflow-y: auto;
             /* scroll interne */
             max-height: calc(90vh - 120px);
             /* garde toujours le footer visible */
         }

         /* Supprime le redimensionnement manuel */
         .tox .tox-statusbar__resize-handle {
             display: none !important;
         }

         /* Optionnel : adapte la barre de titre si besoin */
         #modalCrvCreate .modal-header {
             flex-shrink: 0;
         }

         #modalCrvCreate .modal-footer {
             flex-shrink: 0;
             background: #f8f9fa;
         }

         .crv-texte p {
             margin-bottom: 0.5rem;
         }

         .crv-texte strong {
             font-weight: 600;
         }

         .crv-texte ul,
         .crv-texte ol {
             padding-left: 1.5rem;
         }