/* =============================================================================
   for_mobile_app.css — WebView Flutter / mobile.amnaalink.sn
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Variables
   ----------------------------------------------------------------------------- */
:root {
    --mobile-topbar-height: 56px;
    --mobile-bottomnav-height: 62px;
    --primary: #2a4e9e;
    --primary-rgb: 42, 78, 158;
    --primary-light: rgba(42, 78, 158, 0.10);
    --primary-pill: rgba(42, 78, 158, 0.13);
    --surface: #ffffff;
    --bg: #f2f4f8;
    --border: #eef0f5;
    --text: #1c1f2e;
    --muted: #8892a4;
    --radius: 12px;
    --shadow-card: 0 1px 6px rgba(0,0,0,.07);
    --shadow-nav: 0 -4px 20px rgba(42,78,158,.08);
}

/* -----------------------------------------------------------------------------
   Base + suppression scrollbars (tous les contextes WebView)
   ----------------------------------------------------------------------------- */
html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    /* Cacher la scrollbar sans bloquer le scroll */
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    overflow-x: hidden;
    scrollbar-width: none;
}

/* Scrollbar cachée sur les éléments avec scroll horizontal (tabs, etc.)
   — cibler sélectivement plutôt que * pour ne pas perturber le scroll natif Flutter */
.nav-tabs::-webkit-scrollbar,
.overflow-auto::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body.looma-app {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding-top: var(--mobile-topbar-height);
    padding-bottom: calc(var(--mobile-bottomnav-height) + env(safe-area-inset-bottom, 0px));
    /* Laisser Flutter WebView gérer le scroll vertical nativement */
}

a, button, [role="button"] {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

body.looma-app a,
body.looma-app a:hover,
body.looma-app a:focus,
body.looma-app a:active {
    text-decoration: none !important;
}

/* -----------------------------------------------------------------------------
   Masquer éléments desktop
   ----------------------------------------------------------------------------- */
body.looma-app .navbar-vertical,
body.looma-app .navbar-top,
body.looma-app footer,
body.looma-app #footer-container,
body.looma-app .web-only,
body.looma-app .browser-footer,
body.looma-app .cookie-banner,
body.looma-app .breadcrumb,
body.looma-app nav[aria-label="breadcrumb"] {
    display: none !important;
}

/* FAB — repositionné au-dessus de la bottom nav en mode mobile */
body.looma-app .fab-container {
    bottom: calc(var(--mobile-bottomnav-height) + 12px) !important;
}

body.looma-app .main,
body.looma-app .content {
    padding: 0 !important;
    margin: 0 !important;
}

/* -----------------------------------------------------------------------------
   Contenu principal
   ----------------------------------------------------------------------------- */
#mobile-content {
    min-height: calc(100vh - var(--mobile-topbar-height) - var(--mobile-bottomnav-height));
    background-color: var(--bg);
    /* Contexte de scroll explicite pour Flutter WebView */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
}

.mobile-page-content {
    padding: 10px 10px 8px;  /* réduit : 10px latéral au lieu de 16px */
}

/* -----------------------------------------------------------------------------
   ★ Bottom Navigation — style natif (inspiré Doctolib)
   Icône + label toujours visibles, indicateur bleu en haut de l'onglet actif
   ----------------------------------------------------------------------------- */

/* Conteneur de chaque onglet */
.mnav-tab {
    text-decoration: none;
    color: #8c96a8;
    gap: 3px;
    padding: 0 2px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: color .18s ease;
    /* Indicateur en haut = pseudo-element top */
}

/* Barre indicatrice en haut de l'onglet actif */
.mnav-tab.mnav-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}

/* Wrapper de l'icône (pour positionner le badge) */
.mnav-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 1.3rem;
    line-height: 1;
    transition: transform .15s ease, color .18s ease;
}

/* Label toujours visible */
.mnav-label {
    font-size: .62rem;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
    transition: font-weight .18s ease, color .18s ease;
}

/* ── État actif ── */
.mnav-tab.mnav-active {
    color: var(--primary);
}

.mnav-tab.mnav-active .mnav-label {
    font-weight: 700;
}

.mnav-tab.mnav-active .mnav-icon-wrap {
    transform: translateY(-1px);
}

/* Feedback au tap */
.mnav-tab:active .mnav-icon-wrap {
    transform: scale(.88);
    transition: transform .08s ease;
}

/* Badge compteur */
.mnav-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #ff4757;
    color: #fff;
    font-size: .48rem;
    font-weight: 700;
    min-width: 14px;
    height: 14px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 1.5px solid var(--surface);
    line-height: 1;
}

/* -----------------------------------------------------------------------------
   Cards
   ----------------------------------------------------------------------------- */
/* Exclure les cartes interactives (provider-card, wallet-card, btn-check labels) de la règle border:none */
body.looma-app .card:not(.profile-card):not(.provider-card):not(.wallet-card):not([class*="btn-outline"]) {
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-card) !important;
    border: none !important;
    margin-bottom: 8px;
}

body.looma-app .card:not(.profile-card):not(.provider-card):not(.wallet-card) .card-body {
    padding: .65rem .85rem !important;
}

body.looma-app .card:not(.profile-card):not(.provider-card):not(.wallet-card) .card-header {
    border-radius: var(--radius) var(--radius) 0 0 !important;
    padding: .6rem .85rem;
}

/* Garantir la visibilité de la sélection des cartes de type de profil (signup) */
body.looma-app #signUpForm .profile-card {
    border: 2px solid #e5e7eb !important;
    transition: border-color .25s ease, box-shadow .25s ease !important;
    cursor: pointer;
}
body.looma-app #signUpForm .profile_form-check-input:checked + .card {
    border-color: #2a4e9e !important;
    box-shadow: 0 0 0 3px rgba(42, 78, 158, 0.12) !important;
    background: #fff !important;
}

/* -----------------------------------------------------------------------------
   Listes louma-list-row
   ----------------------------------------------------------------------------- */
body.looma-app .louma-list-row {
    border-radius: var(--radius);
    margin-bottom: 6px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

body.looma-app .louma-list-body {
    padding: 10px 12px;
    min-height: 60px;
}

body.looma-app .louma-list-row:active {
    opacity: .85;
}

/* -----------------------------------------------------------------------------
   Boutons
   ----------------------------------------------------------------------------- */
body.looma-app .btn {
    min-height: 42px;
    border-radius: 10px !important;
    font-weight: 500;
    font-size: .85rem;
}

body.looma-app .btn-sm {
    min-height: 34px;
    font-size: .78rem;
}

body.looma-app .btn-mobile-full {
    width: 100%;
    min-height: 48px;
    font-size: .95rem;
    font-weight: 600;
    border-radius: 14px !important;
}

/* -----------------------------------------------------------------------------
   Formulaires
   ----------------------------------------------------------------------------- */
body.looma-app .form-control,
body.looma-app .form-select {
    min-height: 46px;
    border-radius: 10px !important;
    font-size: 14px;
    border-color: var(--border);
}

body.looma-app .form-control:focus,
body.looma-app .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* -----------------------------------------------------------------------------
   Typographie
   ----------------------------------------------------------------------------- */
body.looma-app h1 { font-size: 1.25rem; font-weight: 700; }
body.looma-app h2 { font-size: 1.1rem;  font-weight: 700; }
body.looma-app h3 { font-size: 1rem;    font-weight: 600; }
body.looma-app h4,
body.looma-app h5 { font-size: .9rem;   font-weight: 600; }

/* Stats — 2 colonnes */
body.looma-app .col-md-3.col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Stats cards — padding réduit */
body.looma-app .stats-overview .card-body {
    padding: .55rem .5rem !important;
}

/* -----------------------------------------------------------------------------
   Tabs scrollables horizontalement
   ----------------------------------------------------------------------------- */
body.looma-app .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1.5px solid var(--border);
    gap: 2px;
    padding-bottom: 0;
}

body.looma-app .nav-tabs .nav-link {
    white-space: nowrap;
    font-size: .78rem;
    padding: .45rem .7rem;
    border-radius: 8px 8px 0 0;
    min-height: 38px;
    font-weight: 500;
}

/* -----------------------------------------------------------------------------
   Modals — bottom sheet
   ----------------------------------------------------------------------------- */
body.looma-app .modal-dialog {
    margin: auto 0 0 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.looma-app .modal-content {
    border-radius: 18px 18px 0 0 !important;
    border: none;
}

body.looma-app .modal.fade .modal-dialog {
    transform: translateY(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
}

body.looma-app .modal.show .modal-dialog {
    transform: translateY(0);
}

/* Supprimer le border-bottom du modal-header pour éviter le double trait */
body.looma-app .modal-header {
    border-bottom: none !important;
}

/* Drag handle visuel */
body.looma-app .modal-content::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* -----------------------------------------------------------------------------
   mb-4 → réduit en mobile
   ----------------------------------------------------------------------------- */
body.looma-app .mb-4 { margin-bottom: .75rem !important; }
body.looma-app .mb-3 { margin-bottom: .5rem  !important; }
body.looma-app .py-5 { padding-top: 1.5rem   !important; padding-bottom: 1.5rem !important; }

/* =============================================================================
   Mobile Landing Page — mlanding (page / non connecté)
   ============================================================================= */

/* Fond plein écran — annule les paddings body.looma-app (pas de topbar/bottomnav ici) */
.mlanding {
    min-height: 100vh;
    margin-top: calc(-1 * var(--mobile-topbar-height));
    margin-bottom: calc(-1 * (var(--mobile-bottomnav-height) + env(safe-area-inset-bottom, 0px)));
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, var(--primary) 0%, #1a3a7e 45%, #f2f4f8 45%);
}

/* Hero — zone bleue */
.mlanding-hero {
    padding: 52px 28px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.mlanding-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.mlanding-app-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 8px;
}

.mlanding-tagline {
    font-size: .9rem;
    opacity: .85;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

/* Card blanche flottante */
.mlanding-card {
    flex: 1;
    background: var(--surface);
    border-radius: 28px 28px 0 0;
    margin-top: -32px;
    padding: 28px 20px 36px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Features list */
.mlanding-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.mlanding-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mlanding-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.mlanding-feature-title {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.mlanding-feature-sub {
    font-size: .73rem;
    color: var(--muted);
    line-height: 1.3;
    margin-top: 2px;
}

/* Toggle Client / Professionnel */
.mlanding-toggle {
    display: flex;
    background: var(--bg);
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 22px;
}

.mlanding-toggle-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 10px;
    border: none;
    background: transparent;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all .2s ease;
    line-height: 1;
}

.mlanding-toggle-btn.active {
    background: var(--surface);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Divider */
.mlanding-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

/* CTA Buttons */
.mlanding-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a7e 100%) !important;
    color: #fff !important;
    border: none !important;
}

.mlanding-btn-secondary {
    background: var(--surface) !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

/* Social proof */
.mlanding-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 22px;
}

.mlanding-proof-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.mlanding-proof-val {
    font-size: .95rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.mlanding-proof-lbl {
    font-size: .6rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.2;
}

.mlanding-proof-sep {
    width: 1px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0;
}

/* =============================================================================
   Mobile Home — mhome components
   ============================================================================= */

/* Conteneur principal */
.mhome {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 4px;
}

/* ── Greeting Card ── */
.mhome-greeting {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a7e 100%);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #fff;
}

.mhome-greeting-sub {
    font-size: .75rem;
    opacity: .75;
    margin: 0 0 2px;
}

.mhome-greeting-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.mhome-greeting-badge {
    background: rgba(255,255,255,.18);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: .82rem;
    font-weight: 700;
    color: #fbbf24;
    flex-shrink: 0;
}

/* ── Stat Pills Row ── */
.mhome-stats-row {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.mhome-stat-pill {
    flex: 1;
    background: var(--surface);
    border-radius: 12px;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-card);
    min-width: 0;
}

.mhome-stat-val {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.mhome-stat-val-sm { font-size: .78rem; }

.mhome-stat-lbl {
    font-size: .58rem;
    color: var(--muted);
    margin-top: 3px;
    text-align: center;
    line-height: 1.2;
}

.mhome-stat-info    .mhome-stat-val { color: #0ea5e9; }
.mhome-stat-warning .mhome-stat-val { color: #d97706; }
.mhome-stat-success .mhome-stat-val { color: #059669; }
.mhome-stat-primary .mhome-stat-val { color: var(--primary); }

/* ── Section ── */
.mhome-section {
    margin-bottom: 12px;
}

.mhome-section-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    padding: 0 2px;
}

.mhome-section-count {
    margin-left: auto;
    font-size: .62rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 7px;
    background: var(--primary-light);
    color: var(--primary);
}

.mhome-section-count.warning { background: #fef3c7; color: #d97706; }
.mhome-section-count.success { background: #d1fae5; color: #059669; }
.mhome-section-count.primary { background: var(--primary-light); color: var(--primary); }

/* ── Avatar initiales ── */
.mhome-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0;
    text-transform: uppercase;
}

.mhome-avatar.success { background: #d1fae5; color: #059669; }
.mhome-avatar.primary { background: var(--primary-light); color: var(--primary); }
.mhome-avatar.warning { background: #fef3c7; color: #d97706; }

/* ── Meta text ── */
.mhome-meta-txt {
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.3;
}

/* ── Négociation badges ── */
.mhome-nego-badge {
    background: #fef3c7;
    color: #d97706;
    font-size: .62rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 2px 7px;
    flex-shrink: 0;
}

.mhome-best-price {
    font-size: .72rem;
    color: #059669;
    font-weight: 600;
    white-space: nowrap;
}

/* ── See all link ── */
.mhome-see-all {
    display: block;
    text-align: center;
    font-size: .75rem;
    color: var(--primary);
    font-weight: 600;
    padding: 8px;
    background: var(--primary-light);
    border-radius: 10px;
    margin-top: 4px;
}

/* ── Savings card (Individual) ── */
.mhome-savings-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    border: 1px solid #a7f3d0;
}

.mhome-savings-icon {
    font-size: 1.5rem;
    color: #059669;
    flex-shrink: 0;
}

.mhome-savings-val {
    font-size: .88rem;
    font-weight: 700;
    color: #059669;
    line-height: 1.2;
}

.mhome-savings-lbl {
    font-size: .68rem;
    color: #047857;
    margin-top: 2px;
}

/* ── Résumé Financier Mobile ── */
.mhome-finance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.mhome-finance-block {
    border-radius: 12px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 76px;
}

.mhome-finance-val {
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.2;
}

.mhome-finance-unit {
    font-size: .6rem;
    font-weight: 600;
    margin-top: 1px;
}

.mhome-finance-lbl {
    font-size: .62rem;
    color: var(--muted);
    margin-top: 4px;
}

.mhome-finance-progress {
    height: 5px;
    border-radius: 10px;
    background: #e9ecef;
    margin-bottom: 8px;
    overflow: hidden;
}

.mhome-finance-progress-bar {
    height: 100%;
    border-radius: 10px;
    background: #059669;
    transition: width 1s ease;
}

.mhome-finance-insight {
    border-radius: 10px;
    padding: 9px 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .72rem;
    line-height: 1.4;
}

/* ── Balance Card (Independent) ── */
.mhome-balance-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a7e 100%);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #fff;
}

.mhome-balance-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mhome-balance-lbl {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .7;
}

.mhome-balance-val {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
}

.mhome-balance-val small {
    font-size: .6rem;
    font-weight: 500;
    opacity: .8;
}

.mhome-balance-val.pending { color: #fde68a; }

.mhome-balance-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.25);
    margin: 0 10px;
    flex-shrink: 0;
}

/* ── Opportunities Banner (Independent) ── */
.mhome-opps-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
    margin-bottom: 12px;
}

.mhome-opps-count {
    font-size: 1.4rem;
    font-weight: 900;
    background: rgba(255,255,255,.2);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mhome-opps-title {
    font-size: .88rem;
    font-weight: 700;
}

.mhome-opps-sub {
    font-size: .68rem;
    opacity: .8;
    margin-top: 2px;
}

/* ── Profile Completion Banner (Independent) ── */
.mhome-profile-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 14px;
    padding: 14px;
    color: #fff;
    margin-bottom: 10px;
}

.mhome-profile-banner-title {
    font-size: .85rem;
    font-weight: 700;
}

.mhome-profile-banner-sub {
    font-size: .68rem;
    opacity: .85;
    margin-top: 2px;
}

.mhome-profile-progress {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.mhome-donut {
    width: 44px;
    height: 44px;
}

.mhome-donut-pct {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: .58rem;
    font-weight: 700;
    color: #fff;
}

/* ── Mini Bar Chart (Independent revenues) ── */
.mhome-chart-card {
    background: var(--surface);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow-card);
}

.mhome-chart-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 64px;
}

.mhome-chart-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.mhome-chart-bar-wrap {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: flex-end;
}

.mhome-chart-bar {
    width: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(42,78,158,.4) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 3px;
}

.mhome-chart-lbl {
    font-size: .56rem;
    color: var(--muted);
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
}
