.mabm-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    z-index: 99999;
    background: var(--mabm-bg, #fff);
    border-top: 1px solid rgba(0,0,0,.10);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    box-shadow: 0 -4px 18px rgba(0,0,0,.10);
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom);
}
.mabm-bottom-nav ul {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 0;
    margin: 0;
    padding: 6px 0;
    list-style: none;
}
.mabm-bottom-nav li { flex: 1 1 0; margin: 0; padding: 0; list-style: none; }
.mabm-bottom-nav a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: var(--mabm-text, #444);
    text-decoration: none;
    font-size: 11px;
    line-height: 1.15;
    border-radius: 0;
    transition: transform .2s ease;
}
.mabm-bottom-nav a:hover,
.mabm-bottom-nav a:focus,
.mabm-bottom-nav a.is-active {
    color: var(--mabm-text, #444);
    background: transparent;
    outline: none;
}
.mabm-bottom-nav a:hover .mabm-icon,
.mabm-bottom-nav a:focus .mabm-icon,
.mabm-bottom-nav a.is-active .mabm-icon {
    color: var(--mabm-active, #2271b1);
}
.mabm-bottom-nav a:active { transform: translateY(1px) scale(.98); }
.mabm-bottom-nav .mabm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    min-width: 26px;
    height: 26px;
    font-size: 22px;
    line-height: 1;
    text-rendering: auto;
    color: var(--mabm-text, #444);
    transition: color .2s ease, transform .2s ease;
    -webkit-font-smoothing: antialiased;
}
.mabm-bottom-nav .mabm-icon.dashicons {
    font-family: dashicons;
    width: 26px;
    height: 26px;
    font-size: 24px;
    line-height: 26px;
}
.mabm-bottom-nav .mabm-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 72px;
}
@media (min-width: 769px) { .mabm-bottom-nav { display: none !important; } }

@supports (padding: max(0px)) {
    .mabm-bottom-nav { padding-bottom: max(env(safe-area-inset-bottom), 0px); }
}
