 
    .dsi-line {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .dsi-line label {
        font-weight: 600;
    }
    .dsi-line input[type="text"],
    .dsi-line input[type="number"] {
        width: 200px;
    }
 
     .wrapDigiSearch h1  {
        color: black ;
    }


    .dsi-btn-wrapper {
        display: flex;
        justify-content: flex-end; /* bouton à droite */
        margin-right: 10px;        /* marge droite */
        margin-bottom: 0px;
    }
    
    
    
    /* Base commune */
    .dsi-btn {
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 50%;
        text-align: center;
        cursor: pointer;
        padding: 0;
        z-index: 2147483647 !important;
    }
    .dsi-btn:hover {
        background: #f0f0f0;
    }
    
    /* Bouton fullscreen ⛶ */
    .dsi-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 18px;
        line-height: 32px;
        float: right;
        margin-right: 10px;   /* marge droite */
        margin-bottom: 0px;
    }
    
    /* Bouton fermeture ✕ */
    .dsi-close-btn {
        position: absolute;
        top: 12px;
        right: 20px;          /* plus à gauche */
        width: 34px;
        height: 34px;
        font-size: 10px;
        line-height: 20px;
    }
    
    
    
    
    /* Popup plein écran */
    .dsi-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.7);
        z-index: 2147483647 !important;
    }
    
    .dsi-modal-content {
        position: absolute;
        top: 50%;              /* centrage vertical */
        left: 50%;             /* centrage horizontal */
        transform: translate(-50%, -50%); /* recentre parfaitement */
        width: 90vw;           /* taille responsive */
        height: 90vh;
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
    }
    

    /* .dsi-modal,
    .dsi-modal * {
        z-index: 2147483647 !important;
    } */


    body.dsi-modal-open .et_pb_section_0_tb_header {
        display: none !important;
    }
    
        /* Masquer le footer Divi pendant la modal */
    body.dsi-modal-open footer,
    body.dsi-modal-open .et_pb_footer,
    body.dsi-modal-open .et_pb_section_0_tb_footer,
    body.dsi-modal-open .et_pb_section_1_tb_footer,
    body.dsi-modal-open .et_pb_section_2_tb_footer {
        display: none !important;
    }

    
    #dsi-modal-iframe {
        width: 100%;
        height: calc(100% - 50px);
        border: none;
    }
    

    
    