/* ==============================
   DFMG Floating Box – v6.2
   ============================== */

/* --- FRONT-END (site public) --- */
.dfmg-floating-box {
    /* Le float est géré via une variable CSS injectée par PHP */
    float: var(--dfmg-float, right);
    display: block;
    box-sizing: border-box;
    line-height: 1.5;
    overflow: auto;
    transition: all 0.2s ease-in-out;
}

.dfmg-floating-box-title {
    font-family: inherit;
    border-radius: 4px;
    font-weight: 600;
}

/* Adaptation responsive : sur mobile, la boîte repasse en pleine largeur */
@media (max-width: 768px) {
    .dfmg-floating-box {
        float: none !important;
        width: 100% !important;
        margin-top: 1em !important;
        margin-right: 0 !important;
        margin-bottom: 1em !important;
        margin-left: 0 !important;
    }
}

/* --- ÉDITEUR GUTENBERG --- */
.editor-styles-wrapper .dfmg-floating-box {
    float: none !important;
    display: inline-block !important;
    vertical-align: top;
    width: 100% !important;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Aide visuelle : contour doux à l’édition */
.editor-styles-wrapper .dfmg-floating-box:hover {
    outline: 1px dashed #ccc;
}

/* Boutons dans le panneau Gutenberg */
.components-panel__body button {
    margin-top: 4px;
}
