/* ═══════════════════════════════════════════════════════════════
   MOLIYAVIY FAOLIYAT — moliyaviy-faoliyat.css
   Ilmiy-kengash bilan bir xil rang o'zgaruvchilari
   ═══════════════════════════════════════════════════════════════ */

:root {
    --primary:   #1566B7;
    --primary-d: #0d47a1;
    --gold:      #FFD54F;
    --text:      #2c3e50;
    --muted:     #5f738c;
    --light-bg:  #f8faff;
    --border:    #e5efff;
    --dark-bg:   #0e1a2b;
}

/* ══ HEADER ══ */
.mf-header {
    background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 100%);
    position: relative; overflow: hidden;
}
.mf-header::before {
    content: ''; position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 42%; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    background: rgba(255,255,255,0.035); pointer-events: none;
}
.mf-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.mf-orb-1 { width: 360px; height: 360px; left: -60px; bottom: -100px; background: rgba(255,255,255,0.04); }
.mf-orb-2 { width: 260px; height: 260px; right: 15%; top: -80px; background: rgba(255,255,255,0.05); }

.mf-header-inner { position: relative; z-index: 2; }

.mf-header-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    align-items: stretch;
}

.mf-header-left { padding: 52px 48px 52px 0; }

.mf-header .breadcrumb { background: none; padding: 0; margin-bottom: 18px; }
.mf-header .breadcrumb-item,
.mf-header .breadcrumb-item a {
    color: rgba(255,255,255,0.65); font-size: 13px;
    text-decoration: none; font-family: sans-serif;
}
.mf-header .breadcrumb-item a:hover { color: var(--gold); }
.mf-header .breadcrumb-item.active { color: #fff; }
.mf-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

.mf-header-tag {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); background: rgba(255,213,79,0.12);
    border: 1px solid rgba(255,213,79,0.25);
    padding: 5px 16px; border-radius: 20px;
    margin-bottom: 14px; font-family: sans-serif;
}
.mf-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px); font-weight: 900;
    color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.mf-header h1 em { font-style: italic; color: var(--gold); }
.mf-header-sub {
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.65);
    font-family: sans-serif; margin: 0;
}

/* Stat bloklar */
.mf-header-right {
    border-left: 1px solid rgba(255,255,255,0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.mf-stat-box {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 28px 16px; text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
}
.mf-stat-box:nth-child(2n)   { border-right: none; }
.mf-stat-box:nth-child(3),
.mf-stat-box:nth-child(4)    { border-bottom: none; }
.mf-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 900;
    color: var(--gold); line-height: 1;
}
.mf-stat-lbl {
    font-size: 11px; color: rgba(255,255,255,0.60);
    font-family: sans-serif; margin-top: 5px; line-height: 1.4;
}

body.dark .mf-header { background: linear-gradient(135deg, #060c18 0%, #0a1628 100%); }

/* ══ SECTION + LAYOUT ══ */
.mf-section { background: var(--light-bg); padding: 44px 0 88px; }
body.dark .mf-section { background: #0a1525; }

.mf-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start;
}

/* ══ SIDEBAR ══ */
.mf-sidebar {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(21,102,183,0.07);
    overflow: hidden;
    position: sticky;
    top: 20px;
}
body.dark .mf-sidebar { background: #1a2740; border-color: rgba(255,255,255,0.07); }

.mf-nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--muted);
    padding: 16px 20px 10px;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.mf-nav-title::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}
body.dark .mf-nav-title { border-color: rgba(255,255,255,0.07); color: #64748b; }

.mf-nav { display: flex; flex-direction: column; padding: 8px; gap: 2px; }

.mf-nav-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px;
    background: none; border: none;
    border-radius: 10px;
    font-size: 13px; font-weight: 500;
    font-family: sans-serif; color: var(--text);
    cursor: pointer; text-align: left;
    transition: background 0.2s, color 0.2s;
    width: 100%; position: relative;
}
.mf-nav-btn::before {
    content: ''; position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 3px; border-radius: 3px;
    background: transparent;
    transition: background 0.2s;
}
.mf-nav-btn > i:first-child { font-size: 14px; color: var(--muted); flex-shrink: 0; }
.mf-nav-btn span { flex: 1; line-height: 1.4; }
.mf-arrow { font-size: 10px; color: transparent; transition: color 0.2s, transform 0.2s; }

.mf-nav-btn:hover { background: var(--light-bg); }
.mf-nav-btn:hover::before { background: var(--border); }
.mf-nav-btn:hover .mf-arrow { color: var(--muted); }

.mf-nav-btn.active {
    background: linear-gradient(135deg, var(--primary-d), var(--primary));
    color: #fff;
    box-shadow: 0 4px 14px rgba(21,102,183,0.25);
}
.mf-nav-btn.active::before { background: var(--gold); }
.mf-nav-btn.active > i:first-child { color: rgba(255,255,255,0.8); }
.mf-nav-btn.active .mf-arrow { color: rgba(255,255,255,0.6); transform: translateX(2px); }

body.dark .mf-nav-btn { color: #94a3b8; }
body.dark .mf-nav-btn:hover { background: rgba(255,255,255,0.05); }
body.dark .mf-nav-btn.active { background: linear-gradient(135deg, var(--primary-d), var(--primary)); color: #fff; }

/* Sidebar info blok */
.mf-sidebar-info {
    margin: 6px 10px 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-d), var(--primary));
    border-radius: 14px; color: #fff;
}
.mf-sidebar-info h6 {
    font-family: 'Playfair Display', serif;
    font-size: 13px; margin: 0 0 6px;
}
.mf-sidebar-info p {
    font-size: 12px; color: rgba(255,255,255,0.78);
    line-height: 1.6; margin: 0 0 10px;
    font-family: sans-serif;
}
.mf-sidebar-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.mf-sidebar-tag {
    font-size: 10px; font-weight: 700; font-family: sans-serif;
    background: rgba(255,255,255,0.15); color: #fff;
    border: 1px solid rgba(255,255,255,0.22);
    padding: 2px 9px; border-radius: 20px;
}

/* ══ CONTENT / PANEL ══ */
.mf-content { min-width: 0; }
.mf-panel { display: none; }
.mf-panel.active { display: block; animation: mfIn 0.28s ease; }
@keyframes mfIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Panel karta */
.mf-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(21,102,183,0.07);
    overflow: hidden;
    margin-bottom: 20px;
}
body.dark .mf-card { background: #1a2740; border-color: rgba(255,255,255,0.07); }

.mf-card-header {
    display: flex; align-items: center; gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
    background: var(--light-bg);
    position: relative;
}
.mf-card-header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}
body.dark .mf-card-header { background: #111e33; border-color: rgba(255,255,255,0.07); }

.mf-card-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-d), var(--primary));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    box-shadow: 0 4px 12px rgba(21,102,183,0.25);
}
.mf-card-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 19px; font-weight: 900;
    color: var(--primary-d); margin: 0 0 3px;
}
body.dark .mf-card-header h2 { color: #90caf9; }
.mf-card-header p { font-size: 13px; color: var(--muted); font-family: sans-serif; margin: 0; }

.mf-card-body { padding: 24px 28px; }

/* ══ BOSH PANEL — navigatsiya grid ══ */
.mf-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.mf-home-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; padding: 22px 16px;
    background: var(--light-bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    cursor: pointer; text-align: center;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    font-family: sans-serif;
    opacity: 0; transform: translateY(8px);
}
.mf-home-card.visible {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease,
    background 0.2s, box-shadow 0.2s;
}
.mf-home-card:hover {
    background: #fff;
    border-color: rgba(21,102,183,0.28);
    box-shadow: 0 6px 20px rgba(21,102,183,0.12);
    transform: translateY(-3px);
}
body.dark .mf-home-card { background: #111e33; border-color: rgba(255,255,255,0.07); }
body.dark .mf-home-card:hover { background: #1a2740; }

.mf-home-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-d), var(--primary));
    color: #fff; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(21,102,183,0.28);
    transition: transform 0.2s;
}
.mf-home-card:hover .mf-home-card-icon { transform: scale(1.08); }
.mf-home-card-lbl {
    font-size: 13px; font-weight: 600;
    color: var(--text); line-height: 1.35;
}
body.dark .mf-home-card-lbl { color: #e2e8f0; }

/* ══ YIL SARLAVHASI ══ */
.mf-year-section { margin-bottom: 24px; }
.mf-year-title {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    color: var(--primary-d);
    margin-bottom: 10px; padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}
.mf-year-title i { font-size: 13px; color: var(--primary); }
body.dark .mf-year-title { color: #90caf9; border-color: rgba(255,255,255,0.08); }

/* ══ HUJJAT RO'YXAT ══ */
.mf-docs { display: flex; flex-direction: column; gap: 8px; }

.mf-doc-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    background: var(--light-bg);
    border-radius: 14px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    opacity: 0; transform: translateX(-8px);
}
.mf-doc-item.visible {
    opacity: 1; transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease,
    background 0.2s, box-shadow 0.2s;
}
.mf-doc-item:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(21,102,183,0.10);
    transform: translateX(3px);
    text-decoration: none;
}
body.dark .mf-doc-item { background: #111e33; border-color: rgba(255,255,255,0.06); }
body.dark .mf-doc-item:hover { background: #1a2740; }

.mf-doc-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(229,57,53,0.10);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #e53935;
}
.mf-doc-info { flex: 1; min-width: 0; }
.mf-doc-name {
    font-family: sans-serif;
    font-size: 14px; font-weight: 500;
    color: var(--text); line-height: 1.4;
}
body.dark .mf-doc-name { color: #e2e8f0; }
.mf-doc-dl {
    font-size: 15px; color: var(--primary);
    flex-shrink: 0; opacity: 0;
    transition: opacity 0.2s;
}
.mf-doc-item:hover .mf-doc-dl { opacity: 1; }
body.dark .mf-doc-dl { color: #90caf9; }

/* ══ BO'SH HOLAT ══ */
.mf-empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 56px 24px; text-align: center; gap: 14px;
}
.mf-empty > i { font-size: 46px; color: var(--border); display: block; }
body.dark .mf-empty > i { color: rgba(255,255,255,0.08); }
.mf-empty p {
    font-family: sans-serif; font-size: 14px;
    font-weight: 500; color: #b0bec5; margin: 0;
}
body.dark .mf-empty p { color: rgba(255,255,255,0.2); }

/* ══ SHARTNOMA JADVALLARI ══ */
.mf-table-section { margin-bottom: 36px; }

.mf-table-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    color: var(--primary-d);
    text-align: center;
    margin-bottom: 6px;
}
body.dark .mf-table-title { color: #90caf9; }

.mf-table-sub {
    font-family: sans-serif;
    font-size: 12px; color: var(--muted);
    text-align: center; margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
}

.mf-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(21,102,183,0.06);
}

.mf-table {
    width: 100%; border-collapse: collapse;
    font-family: sans-serif; font-size: 13px;
}

.mf-table thead tr {
    background: linear-gradient(135deg, var(--primary-d), var(--primary));
    color: #fff;
}
.mf-table thead th {
    padding: 11px 10px;
    font-weight: 600; font-size: 12px;
    text-align: center; line-height: 1.4;
    border: 1px solid rgba(255,255,255,0.15);
    vertical-align: middle;
}
.mf-table tbody tr:nth-child(even) { background: var(--light-bg); }
.mf-table tbody tr:nth-child(odd)  { background: #fff; }
.mf-table tbody tr:hover { background: #e8f0fb; transition: background 0.15s; }
body.dark .mf-table tbody tr:nth-child(even) { background: #111e33; }
body.dark .mf-table tbody tr:nth-child(odd)  { background: #1a2740; }
body.dark .mf-table tbody tr:hover { background: #1e2f50; }
.mf-table tbody td {
    padding: 10px 10px;
    border: 1px solid var(--border);
    color: var(--text); vertical-align: middle;
    line-height: 1.45;
}
body.dark .mf-table tbody td { border-color: rgba(255,255,255,0.07); color: #cbd5e1; }
.mf-table tbody td strong { color: var(--primary-d); font-weight: 700; }
body.dark .mf-table tbody td strong { color: #90caf9; }
.mf-table-center { text-align: center; }

.mf-table-note {
    margin-top: 12px; padding: 12px 16px;
    background: rgba(21,102,183,0.05);
    border: 1px solid rgba(21,102,183,0.12);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    font-family: sans-serif; font-size: 13px;
    color: var(--text); line-height: 1.6;
}
body.dark .mf-table-note {
    background: rgba(21,102,183,0.08);
    border-color: rgba(21,102,183,0.2);
    color: #94a3b8;
}

/* ══════════════════════════════════════════════════════
   IJTIMOIY MUHOFAZA — qo'shimcha komponentlar
   ══════════════════════════════════════════════════════ */

/* Kirish matni */
.mf-ij-intro {
    background: linear-gradient(135deg, rgba(21,102,183,0.06), rgba(13,71,161,0.04));
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 28px;
}
.mf-ij-intro p {
    font-family: 'Source Serif 4', serif;
    font-size: 14px; line-height: 1.8;
    color: var(--text); margin: 0;
}
body.dark .mf-ij-intro {
    background: rgba(21,102,183,0.08);
    border-color: rgba(21,102,183,0.2);
}
body.dark .mf-ij-intro p { color: #cbd5e1; }

/* Statistika kartalar */
.mf-ij-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}
.mf-ij-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.mf-ij-stat:hover {
    box-shadow: 0 6px 20px rgba(21,102,183,.1);
    transform: translateY(-2px);
}
.mf-ij-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 900;
    color: var(--primary-d);
    line-height: 1;
    margin-bottom: 6px;
}
.mf-ij-stat-lbl {
    font-family: sans-serif;
    font-size: 12px; color: var(--muted);
    line-height: 1.4;
}
body.dark .mf-ij-stat { background: #111e33; border-color: rgba(255,255,255,0.07); }
body.dark .mf-ij-stat-num { color: #90caf9; }

/* Bo'lim sarlavhasi */
.mf-ij-section-title {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 700;
    color: var(--primary-d);
    margin: 28px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}
.mf-ij-section-title i { font-size: 13px; color: var(--primary); }
body.dark .mf-ij-section-title { color: #90caf9; border-color: rgba(255,255,255,0.08); }

/* Chiziqli ro'yxat */
.mf-ij-list {
    display: flex; flex-direction: column; gap: 10px;
    margin: 0 0 8px;
    padding: 0; list-style: none;
}
.mf-ij-list li {
    display: flex; align-items: flex-start; gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: sans-serif;
    font-size: 13.5px; line-height: 1.65;
    color: var(--text);
    transition: border-color .18s, box-shadow .18s;
}
.mf-ij-list li:hover {
    border-color: rgba(21,102,183,.25);
    box-shadow: 0 4px 14px rgba(21,102,183,.07);
}
.mf-ij-dot {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--primary-d), var(--primary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.mf-ij-dot i { font-size: 11px; color: #fff; }
body.dark .mf-ij-list li { background: #111e33; border-color: rgba(255,255,255,0.07); color: #cbd5e1; }
body.dark .mf-ij-list li:hover { border-color: rgba(21,102,183,.3); }

/* Sayohat kartalari */
.mf-ij-trips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 8px;
}
.mf-ij-trip {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex; align-items: flex-start; gap: 12px;
    font-family: sans-serif;
    transition: box-shadow .2s, transform .2s;
}
.mf-ij-trip:hover {
    box-shadow: 0 4px 16px rgba(21,102,183,.1);
    transform: translateY(-2px);
}
.mf-ij-trip-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary-d), var(--primary));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mf-ij-trip-icon i { font-size: 14px; color: #fff; }
.mf-ij-trip-body { min-width: 0; }
.mf-ij-trip-name {
    font-size: 13px; font-weight: 600;
    color: var(--primary-d); margin-bottom: 3px;
    line-height: 1.4;
}
.mf-ij-trip-count { font-size: 12px; color: var(--muted); }
body.dark .mf-ij-trip { background: #111e33; border-color: rgba(255,255,255,0.07); }
body.dark .mf-ij-trip-name { color: #90caf9; }

/* Bayramlar bandlar */
.mf-ij-holidays {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 4px;
}
.mf-ij-holiday-badge {
    display: flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, rgba(21,102,183,.08), rgba(13,71,161,.06));
    border: 1px solid rgba(21,102,183,.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-family: sans-serif; font-size: 12.5px;
    font-weight: 600; color: var(--primary-d);
}
.mf-ij-holiday-badge i { font-size: 11px; color: var(--primary); }
body.dark .mf-ij-holiday-badge {
    background: rgba(21,102,183,.12);
    border-color: rgba(21,102,183,.3);
    color: #90caf9;
}

/* Imzolar */
.mf-ij-sign {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-family: sans-serif; font-size: 13px;
    color: var(--muted); line-height: 1.8;
}
.mf-ij-sign strong { color: var(--text); }
body.dark .mf-ij-sign { background: #111e33; border-color: rgba(255,255,255,0.07); color: #64748b; }
body.dark .mf-ij-sign strong { color: #e2e8f0; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .mf-layout { grid-template-columns: 220px 1fr; }
}
@media (max-width: 900px) {
    .mf-header-grid { grid-template-columns: 1fr; }
    .mf-header-left { padding: 40px 0 28px; }
    .mf-header-right {
        border-left: none; border-top: 1px solid rgba(255,255,255,0.12);
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }
    .mf-stat-box { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.08); padding: 18px 10px; }
    .mf-stat-box:last-child { border-right: none; }
    .mf-stat-num { font-size: 20px; }
}
@media (max-width: 768px) {
    .mf-layout { grid-template-columns: 1fr; }
    .mf-sidebar { position: static; }
    .mf-nav { flex-direction: row; flex-wrap: wrap; padding: 8px; gap: 6px; }
    .mf-nav-btn { padding: 9px 12px; font-size: 12px; }
    .mf-nav-btn span { display: none; }
    .mf-nav-btn > i:first-child { font-size: 16px; }
    .mf-arrow { display: none; }
    .mf-card-body { padding: 18px 16px; }
    .mf-card-header { padding: 16px; }
    .mf-home-grid { grid-template-columns: repeat(3, 1fr); }
    .mf-ij-stats { grid-template-columns: repeat(3, 1fr); }
    .mf-ij-trips { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .mf-home-grid { grid-template-columns: repeat(2, 1fr); }
    .mf-ij-stats { grid-template-columns: repeat(2, 1fr); }
    .mf-ij-trips { grid-template-columns: 1fr; }
    .mf-ij-list li { font-size: 13px; }
}