/* ========================================
   MUJAM NAV-TABS
   ======================================== */
.mujam-nav-tabs {
    display: flex;
    align-items: center;
    padding: 0 12px 0 24px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 2px solid #e5e7eb;
    background: var(--page-bg, #f0f2f0);
    gap: 0;
}

.mujam-nav-tabs-left {
    display: flex;
    gap: 0;
    margin-inline-end: auto;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    margin-bottom: -2px;
}
.mujam-nav-tabs-left::-webkit-scrollbar { display: none; }

.mujam-tab {
    padding: 10px 22px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}
.mujam-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--emerald, #059669);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.mujam-tab:hover {
    color: var(--emerald-dark, #065f46);
    background: color-mix(in srgb, var(--emerald, #059669) 6%, transparent);
    border-radius: 6px 6px 0 0;
}
.mujam-tab.active {
    color: var(--emerald, #059669);
}
.mujam-tab.active::after {
    transform: scaleX(1);
}

/* ── Панели табов ── */
.mujam-tab-panel {
    display: none;
    flex: 1;
}
.mujam-tab-panel.active {
    display: flex;
    flex-direction: column;
}

/* ── Строка статистики ── */
.mujam-stats-row {
    padding: 12px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
