.mi-caja-flotante {
    position: fixed;
    right: 10px;
    top: 10%;
    z-index: 100;
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Ocultar la caja en dispositivos con un ancho menor a 768px */
@media screen and (max-width: 768px) {
    .mi-caja-flotante {
        display: none;
    }
}

#mi_metabox_movil_id p {
    margin-bottom: 10px;
}

#mi_metabox_movil_id textarea {
    width: 100%;
    height: 100px; /* Ajusta según sea necesario */
}


@media screen and (max-width: 768px) {
    .mi-clase-barra-movil {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 100; /* Ajusta según sea necesario */
        background-color: #fff; /* Ajusta según tu diseño */
        /* Otros estilos según sea necesario */
    }
}