/* ============================================================
   MJP TRANSPORT ERP — Premium Design System v2.0
   Inspired by: Zoho, Stripe, Linear, Notion
   ============================================================ */

/* ---------- 1. Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- 2. Design Tokens ---------- */
:root {
    --brand:          #F97316;
    --brand-dark:     #EA580C;
    --brand-light:    #FFF7ED;
    --brand-glow:     rgba(249,115,22,0.18);

    --navy:           #0F172A;
    --navy-2:         #1E293B;
    --navy-3:         #334155;
    --navy-4:         #475569;

    --bg:             #F1F5F9;
    --surface:        #FFFFFF;
    --surface-2:      #F8FAFC;
    --border:         #E2E8F0;
    --border-2:       #CBD5E1;

    --text-1:         #0F172A;
    --text-2:         #334155;
    --text-3:         #64748B;
    --text-4:         #94A3B8;

    --green:          #10B981;
    --green-bg:       #ECFDF5;
    --red:            #EF4444;
    --red-bg:         #FEF2F2;
    --blue:           #3B82F6;
    --blue-bg:        #EFF6FF;
    --purple:         #8B5CF6;
    --purple-bg:      #F5F3FF;
    --amber:          #F59E0B;
    --amber-bg:       #FFFBEB;

    --sidebar-w:      240px;
    --sidebar-w-collapsed: 64px;
    --header-h:       60px;
    --radius:         10px;
    --radius-lg:      14px;
    --radius-xl:      18px;
    --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow:         0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
    --shadow-lg:      0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
    --shadow-xl:      0 20px 25px -5px rgba(0,0,0,.10), 0 10px 10px -5px rgba(0,0,0,.04);

    --transition:     all 0.22s cubic-bezier(.4,0,.2,1);
    --transition-fast: all 0.14s cubic-bezier(.4,0,.2,1);
}

/* ---------- 3. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text-1);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---------- 4. Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-4); }

/* ---------- 5. Sidebar ---------- */
.mjp-wrapper {
    min-height: 100vh;
}

.mjp-sidebar {
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: var(--sidebar-w);
    background: var(--navy-2);
    color: var(--navy-text);
    z-index: 1000;
    transition: width 0.28s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
}

.mjp-main {
    margin-left: var(--sidebar-w);
    transition: margin-left 0.28s cubic-bezier(.4,0,.2,1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mjp-sidebar.collapsed {
    width: var(--sidebar-w-collapsed);
}

/* Brand */
.sidebar-brand {
    display: flex;
    align-items: center;
    padding: 0 14px;
    height: var(--header-h);
    border-bottom: 1px solid rgba(255,255,255,.07);
    gap: 10px;
    flex-shrink: 0;
    overflow: hidden;
    text-decoration: none;
}

.sidebar-brand img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: contain;
    background: white;
    padding: 3px;
}

.sidebar-brand-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    white-space: nowrap;
    transition: var(--transition);
}

.sidebar-brand-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
    line-height: 1.2;
}

.sidebar-brand-sub {
    font-size: 10.5px;
    color: var(--brand);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.mjp-sidebar.collapsed .sidebar-brand-text { opacity: 0; width: 0; }

/* Toggle Button */
.sidebar-toggle {
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-3);
    font-size: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1001;
}

.sidebar-toggle:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: white;
}

.sidebar-toggle-icon {
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}

.mjp-sidebar.collapsed .sidebar-toggle-icon {
    transform: rotate(180deg);
}

/* Nav Sections */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 0;
}

.sidebar-nav::-webkit-scrollbar { width: 3px; }

.nav-section-label {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255,255,255,.28);
    padding: 12px 18px 5px;
    white-space: nowrap;
    overflow: hidden;
    transition: var(--transition);
}

.mjp-sidebar.collapsed .nav-section-label {
    opacity: 0;
    padding-top: 6px;
    padding-bottom: 2px;
}

.mjp-sidebar .nav-item {
    padding: 2px 10px;
}

.mjp-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 10px;
    border-radius: 8px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    transition: var(--transition-fast);
    position: relative;
}

.mjp-sidebar .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.mjp-sidebar .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    box-shadow: 0 4px 12px var(--brand-glow);
}

.mjp-sidebar .nav-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* ── Restore Bootstrap nav-tabs (not sidebar) ─────── */
.nav-tabs .nav-link {
    display: block;
    align-items: unset;
    gap: unset;
    padding: 0.5rem 1rem;
    border-radius: var(--bs-nav-tabs-border-radius, 0.375rem) var(--bs-nav-tabs-border-radius, 0.375rem) 0 0;
    color: var(--text-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: normal;
    overflow: visible;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: none;
    transition: color 0.15s, background-color 0.15s;
}

.nav-tabs .nav-link:hover {
    color: var(--brand);
    background: var(--surface-2);
    border-color: var(--border) var(--border) transparent;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link.fw-bold.active {
    color: var(--brand);
    background: var(--surface);
    border-color: var(--border) var(--border) var(--surface);
    box-shadow: none;
}

.mjp-sidebar .nav-label {
    transition: var(--transition);
    overflow: hidden;
}

.mjp-sidebar.collapsed .nav-label { opacity: 0; width: 0; }

/* Tooltip on collapsed */
.mjp-sidebar.collapsed .nav-link::after {
    content: attr(data-label);
    position: absolute;
    left: calc(var(--sidebar-w-collapsed) - 2px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s;
    z-index: 9999;
}

.mjp-sidebar.collapsed .nav-link:hover::after {
    opacity: 1;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 12px 10px;
    border-top: 1px solid rgba(255,255,255,.07);
    overflow: hidden;
}

/* ---------- 6. Main Content Area ---------- */
.mjp-main {
    margin-left: var(--sidebar-w);
    transition: margin-left 0.28s cubic-bezier(.4,0,.2,1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: auto;
}

.mjp-main.sidebar-collapsed {
    margin-left: var(--sidebar-w-collapsed);
}

/* ---------- 7. Top Header ---------- */
.mjp-header {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--header-h);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    box-shadow: 0 1px 0 var(--border);
}

.header-greeting {
    flex: 1;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-2);
}

.header-greeting span {
    color: var(--text-3);
    font-weight: 400;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-3);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.header-btn:hover {
    background: var(--bg);
    color: var(--text-1);
    border-color: var(--border-2);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    transition: var(--transition-fast);
}

.header-user:hover { background: var(--bg); }

.header-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.header-username {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
}

/* ---------- 8. Page Content ---------- */
.mjp-content {
    flex: 1;
    padding: 28px 28px 40px;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-1);
    margin: 0;
    letter-spacing: -.3px;
}

.page-subtitle {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 2px;
}

/* ---------- 9. Cards ---------- */
.card, .saas-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover, .saas-card:hover {
    box-shadow: var(--shadow);
}

.card-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-weight: 600;
    color: var(--text-1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* KPI Cards */
.kpi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-2);
}

.kpi-title {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 6px;
}

.kpi-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -.5px;
    line-height: 1.1;
}

.kpi-trend {
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 6px;
}

.kpi-trend.up { color: var(--green); }
.kpi-trend.down { color: var(--red); }

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-blue   { background: var(--blue-bg);   color: var(--blue); }
.icon-green  { background: var(--green-bg);  color: var(--green); }
.icon-red    { background: var(--red-bg);    color: var(--red); }
.icon-purple { background: var(--purple-bg); color: var(--purple); }
.icon-orange { background: var(--brand-light); color: var(--brand); }
.icon-amber  { background: var(--amber-bg);  color: var(--amber); }

/* ---------- 10. Buttons ---------- */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    border-radius: 8px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-color: var(--brand-dark);
    color: white;
    box-shadow: 0 4px 10px var(--brand-glow);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #C2410C 100%);
    border-color: #C2410C;
    color: white;
    box-shadow: 0 6px 14px var(--brand-glow);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline-primary:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: white;
}

.btn-white, .btn-light {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-2);
}

.btn-white:hover, .btn-light:hover {
    background: var(--bg);
    border-color: var(--border-2);
    color: var(--text-1);
}

/* ---------- 11. Tables ---------- */
.table-modern {
    width: 100%;
}

.table-modern thead tr {
    border-bottom: 1px solid var(--border);
}

.table-modern th {
    background: var(--surface-2);
    color: var(--text-3);
    font-weight: 600;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .55px;
    padding: 12px 16px;
    white-space: nowrap;
    border-bottom: 1px solid var(--border);
}

.table-modern td {
    vertical-align: middle;
    color: var(--text-2);
    font-weight: 500;
    font-size: 13.5px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: background .12s;
}

.table-modern tbody tr:last-child td { border-bottom: none; }

.table-modern tbody tr:hover td {
    background: var(--surface-2);
}

/* ---------- 12. Forms ---------- */
.form-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 5px;
}

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 13.5px;
    font-family: 'Inter', sans-serif;
    color: var(--text-1);
    background: var(--surface);
    transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
    outline: none;
}

.form-control::placeholder { color: var(--text-4); }

.input-group-text {
    border: 1.5px solid var(--border);
    background: var(--surface-2);
    color: var(--text-3);
    font-size: 14px;
}

/* ---------- 13. Badges ---------- */
.badge {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 6px;
    letter-spacing: .2px;
}

.badge-success { background: var(--green-bg); color: #059669; border: 1px solid #A7F3D0; }
.badge-danger  { background: var(--red-bg);   color: #DC2626; border: 1px solid #FECACA; }
.badge-warning { background: var(--amber-bg); color: #D97706; border: 1px solid #FDE68A; }
.badge-info    { background: var(--blue-bg);  color: #2563EB; border: 1px solid #BFDBFE; }
.badge-secondary { background: #F1F5F9; color: var(--text-3); border: 1px solid var(--border); }
.badge-orange  { background: var(--brand-light); color: var(--brand-dark); border: 1px solid #FED7AA; }

/* ---------- 14. Alerts ---------- */
.alert {
    border-radius: var(--radius);
    border: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 12px 16px;
}

.alert-success { background: var(--green-bg); color: #065F46; border-left: 4px solid var(--green); }
.alert-danger  { background: var(--red-bg);   color: #991B1B; border-left: 4px solid var(--red); }
.alert-warning { background: var(--amber-bg); color: #92400E; border-left: 4px solid var(--amber); }

/* ---------- 15. Toast Notifications ---------- */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    pointer-events: auto;
    transform: translateX(110%);
    animation: toastIn .35s cubic-bezier(.34,1.56,.64,1) forwards, toastOut .3s ease .4s forwards;
    min-width: 260px;
    max-width: 340px;
}

.toast-msg.toast-success { border-left: 4px solid var(--green); }
.toast-msg.toast-error   { border-left: 4px solid var(--red); }
.toast-msg.toast-info    { border-left: 4px solid var(--blue); }

@keyframes toastIn  { to { transform: translateX(0); } }
@keyframes toastOut { to { transform: translateX(110%); opacity: 0; } }

/* ---------- 16. Top Loading Bar ---------- */
#mjp-loader {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--brand), #FACC15);
    z-index: 99999;
    border-radius: 0 3px 3px 0;
    transition: width .4s ease, opacity .3s;
    box-shadow: 0 0 8px var(--brand-glow);
}

/* ---------- 17. Autocomplete ---------- */
.autocomplete-suggestions {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    z-index: 9999;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    margin-top: 4px;
}

.autocomplete-suggestion {
    padding: 9px 14px;
    font-size: 13.5px;
    color: var(--text-2);
    cursor: pointer;
    transition: background .12s;
    border-bottom: 1px solid var(--border);
}

.autocomplete-suggestion:last-child { border-bottom: none; }
.autocomplete-suggestion:hover, .autocomplete-selected { background: var(--brand-light); color: var(--brand-dark); }
.autocomplete-suggestions strong { font-weight: 700; color: var(--brand); }

/* ---------- 18. Status Select (Bilties) ---------- */
.status-select {
    border-radius: 20px;
    padding: 0.3rem 2rem 0.3rem 1rem;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: var(--surface-2);
    min-width: 110px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: 'Inter', sans-serif;
}

.status-pending  { color: #92400E; background: var(--amber-bg); border-color: #FDE68A; }
.status-paid     { color: #065F46; background: var(--green-bg); border-color: #A7F3D0; }
.status-cancelled{ color: #991B1B; background: var(--red-bg);   border-color: #FECACA; }

/* ---------- 19. Modals ---------- */
.mjp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.45);
    backdrop-filter: blur(3px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: overlayIn .2s ease;
}

@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.mjp-modal {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 520px;
    width: 100%;
    animation: modalIn .3s cubic-bezier(.34,1.56,.64,1);
    overflow: hidden;
}

@keyframes modalIn { from { transform: scale(.92) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }

.mjp-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mjp-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-1);
}

.mjp-modal-close {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-3);
    transition: var(--transition-fast);
    line-height: 1;
}

.mjp-modal-close:hover { background: var(--red-bg); color: var(--red); border-color: #FECACA; }

.mjp-modal-body { padding: 24px; }
.mjp-modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; gap: 8px; justify-content: flex-end; }

/* ---------- 20. Quick Stat Chips ---------- */
.stat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-2);
}

/* ---------- 21. Action Card (Dashboard Quick Links) ---------- */
.action-card {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    text-decoration: none;
    color: var(--text-1);
    background: var(--surface);
    transition: var(--transition-fast);
    margin-bottom: 10px;
    gap: 14px;
}

.action-card:hover {
    background: var(--surface-2);
    border-color: var(--brand);
    color: var(--text-1);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}

.action-card:last-child { margin-bottom: 0; }

.action-title {
    font-weight: 600;
    color: var(--text-1);
    font-size: 13.5px;
    line-height: 1.2;
}

.action-desc {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
}

/* ---------- 22. Responsive ---------- */
@media (max-width: 768px) {
    .mjp-sidebar {
        transform: translateX(-100%);
        width: var(--sidebar-w) !important;
    }

    .mjp-sidebar.mobile-open {
        transform: translateX(0);
    }

    .mjp-main {
        margin-left: 0 !important;
    }

    .mjp-content {
        padding: 16px;
    }

    .page-title { font-size: 18px; }
}

/* ---------- 23. Print ---------- */
@media print {
    .mjp-sidebar, .mjp-header, .no-print { display: none !important; }
    .mjp-main { margin-left: 0 !important; }
    .mjp-content { padding: 0; }
    body { background: white; }
}

/* ---------- 24. Bootstrap Overrides ---------- */
.container-fluid { padding: 0; }
.row { margin: 0; }
.col-md-3, .col-lg-2, .col-md-9, .col-lg-10 { padding: 0; }
