/* mobile back button styles */
.mbb-float {
    position: fixed;
    left: 12px;
    top: 60px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbb-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* tap area */
}

/* Force uploaded image to visible size (override theme rules) */
.mbb-icon {
    width: 28px !important;
    height: auto !important;
    display: inline-block !important;
    object-fit: contain !important;
}

/* hide floating on desktop unless explicitly enabled */
@media (min-width: 768px) {
    .mbb-float { display: none; }
}