/* ===== FLEXLAYOUT FRONTEND STYLES ===== */

.flmb-canvas {
    position: relative;
    width: 100%;
    min-height: 200px;
}

/* Generic element wrapper */
.flmb-el {
    position: absolute;
    padding: 10px;
    box-sizing: border-box;
    overflow: visible;
}

/* Text element */
.flmb-text {
    font-size: 18px;
    line-height: 1.4;
    color: #222;
}

/* Button element */
.flmb-button button {
    padding: 12px 20px;
    background: #0073aa;
    color: #fff;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.flmb-button button:hover {
    background: #005f8d;
}

/* Image element */
.flmb-image img {
    max-width: 100%;
    height: auto;
}

/* Optional animation smoothing */
.flmb-el {
    transition: all .15s ease-out;
}

