/* ── Panel bottom nav (mobile) ── */

.panel-user-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.panel-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 64px; /* sits directly above the global bottom-nav (also 64px-ish tall) */
    z-index: 1025; /* below global nav's 1030 so it doesn't overlap on layering issues */
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    background: #fffbeb;
    border-top: 1px solid #fde68a;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    padding: 4px 4px;
}

.panel-bottom-nav .bottom-nav-item {
    font-size: 10px;
}

.panel-nav-active {
    color: #F6AD55 !important;
    font-weight: 500;
}

/* Reserve extra space so page content isn't hidden behind BOTH fixed bars on panel pages */
@media (max-width: 767.98px) {
    .page:has(.panel-bottom-nav) {
        padding-bottom: 128px;
    }
}
