body {
    padding-bottom: 72px;
}

/* ── Bottom tab bar ──────────────────────── */
.bottom-tabs {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1030;
    display: flex;
    background: var(--bs-primary);
    border-top: 1px solid rgba(255,255,255,.15);
}
.bottom-tabs a,
.bottom-tabs button.tab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px 6px;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .85rem;
    line-height: 1.2;
    transition: color .15s;
    background: none;
    border: none;
    cursor: pointer;
}
.bottom-tabs a i,
.bottom-tabs button.tab-btn i { font-size: 1.35rem; margin-bottom: 2px; }
.bottom-tabs a.active,
.bottom-tabs a:hover,
.bottom-tabs button.tab-btn:hover { color: #fff; }
.bottom-tabs a.active i { color: #fff; }

/* ── List items ──────────────────────────── */
.list-card {
    border-radius: .75rem;
    overflow: hidden;
}
.list-row {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: .75rem 1rem;
    text-decoration: none;
    color: var(--bs-body-color);
    transition: background .15s;
}
.list-row:hover { background: rgba(0,0,0,.04); color: var(--bs-body-color); }
.list-row + .list-row { border-top: 1px solid var(--bs-border-color); }

.list-thumb {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
}

.list-text { flex: 1; min-width: 0; }
.list-title { font-weight: 600; font-size: .95rem; line-height: 1.3; }
.list-subtitle { font-size: .78rem; color: #6c757d; line-height: 1.3; margin-top: 1px; }
.list-meta { font-size: .72rem; color: #adb5bd; margin-top: 3px; }

.list-chevron {
    flex-shrink: 0;
    color: #adb5bd;
    font-size: 1rem;
}

/* ── Menu offcanvas ──────────────────────── */
.menu-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border-radius: .5rem;
    cursor: pointer;
    transition: background .15s;
    font-size: .95rem;
    color: var(--bs-body-color);
    text-decoration: none;
}
.menu-item:hover { background: rgba(0,0,0,.06); color: var(--bs-body-color); }
.menu-item i { font-size: 1.25rem; width: 1.5rem; text-align: center; }

#menuOffcanvas {
    width: 240px !important;
    left: auto !important;
    right: 0;
    border-radius: .75rem 0 0 0;
    height: auto !important;
    bottom: 72px;
}
#menuOffcanvas .offcanvas-body {
    overflow-y: visible;
}
