/**
 * 마이페이지 하단 네비게이션 — jmp-chat과 동일 디자인
 * 뷰포트 하단 고정, 데스크톱·모바일 모두 표시 (ID로 항상 적용)
 *
 * z-index: hc-joyn-menu 트리거(9990)·펼침 오버레이(#hcMenuOverlay 9991)보다 낮게 —
 * 햄버거 메뉴가 하단 바 위에 보이도록.
 */
#jmp-mypage-bottom-nav {
    display: flex !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9980;
    background: var(--bg-1, #ffffff);
    border-top: 1px solid var(--border-1, #E5E7EB);
    padding-bottom: env(safe-area-inset-bottom, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    align-items: stretch;
    justify-content: space-around;
    min-height: 64px;
    max-height: 80px;
    height: auto;
    margin: 0;
    box-sizing: border-box;
    pointer-events: auto;
}
#jmp-mypage-bottom-nav .jmp-chat-mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 8px 14px;
    min-height: 48px;
    text-decoration: none;
    color: var(--text-2, #6B7280);
    font-size: 10px;
    transition: color .15s, background .15s;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    border-radius: 0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
    touch-action: manipulation;
}
#jmp-mypage-bottom-nav .jmp-chat-mobile-nav-item:hover,
#jmp-mypage-bottom-nav .jmp-chat-mobile-nav-item:focus {
    color: var(--text-1, #111827);
    background: transparent;
}
#jmp-mypage-bottom-nav .jmp-chat-mobile-nav-item.active {
    color: var(--brand, #4541FF);
    font-weight: 600;
    background: transparent;
}
#jmp-mypage-bottom-nav .jmp-chat-mobile-nav-icon {
    font-size: 20px;
    line-height: 1;
}
#jmp-mypage-bottom-nav .jmp-chat-mobile-nav-label {
    line-height: 1.2;
}
@media (min-width: 769px) {
    #jmp-mypage-bottom-nav .jmp-chat-mobile-nav-item { font-size: 12px; }
}
@media (max-width: 768px) {
    #jmp-mypage-bottom-nav .jmp-chat-mobile-nav-item { font-size: 12px; }
}
/* 컨텐츠 하단 여백 — 네비에 가려지지 않도록 (wrapper 유무 관계없이) */
.jmp-mypage-container {
    padding-bottom: 72px !important;
}
