/* =========================================================
   PT MMT - Interactive Map & Dashboard Scoped Styles
   ========================================================= */

/* Ensure parent Elementor shortcode container fills full width */
.elementor-element-d7ef96d,
.elementor-widget-shortcode,
.elementor-widget-shortcode .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
}

.ptmmt-dashboard-container {
    --mmt-primary: #ea580c;
    --mmt-primary-hover: #c2410c;
    --mmt-dark: #0f172a;
    --mmt-slate-900: #0f172a;
    --mmt-slate-800: #1e293b;
    --mmt-slate-700: #334155;
    --mmt-slate-600: #475569;
    --mmt-slate-500: #64748b;
    --mmt-slate-400: #94a3b8;
    --mmt-slate-300: #cbd5e1;
    --mmt-slate-200: #e2e8f0;
    --mmt-slate-100: #f1f5f9;
    --mmt-slate-50: #f8fafc;
    --mmt-bg: #f8fafc;
    --mmt-card-bg: #ffffff;
    --mmt-border: #e2e8f0;
    --mmt-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    color: var(--mmt-slate-800);
    width: 100% !important;
    max-width: 1200px !important;
    margin: 15px auto 35px auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    background: transparent;
    overflow: visible;
}

.ptmmt-dashboard-container * {
    box-sizing: border-box;
}

/* ---------------------------------------------------------
   Strict Scoped Typography Resets (Shield from Theme & Elementor)
   --------------------------------------------------------- */
.ptmmt-dashboard-container h1,
.ptmmt-dashboard-container h2,
.ptmmt-dashboard-container h3,
.ptmmt-dashboard-container h4,
.ptmmt-dashboard-container h5,
.ptmmt-dashboard-container h6,
.ptmmt-dashboard-container p,
.ptmmt-dashboard-container a,
.ptmmt-dashboard-container span,
.ptmmt-dashboard-container div,
.ptmmt-dashboard-container th,
.ptmmt-dashboard-container td {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    letter-spacing: normal !important;
    text-transform: none;
}

/* 1. Header Top */
.ptmmt-top-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 18px;
    width: 100%;
}

.ptmmt-dashboard-container .ptmmt-top-main-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--mmt-dark) !important;
    margin: 0 0 4px 0 !important;
    letter-spacing: -0.3px !important;
    line-height: 1.25 !important;
}

.ptmmt-dashboard-container .ptmmt-top-sub-title {
    font-size: 13px !important;
    color: var(--mmt-slate-500) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* ---------------------------------------------------------
   2. Six Top KPI Metrics Row (Generous 6-column Layout)
   --------------------------------------------------------- */
.ptmmt-metrics-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.ptmmt-kpi-card {
    background: var(--mmt-card-bg);
    border: 1px solid var(--mmt-border);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--mmt-shadow);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-width: 0;
    overflow: hidden;
}

.ptmmt-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
    border-color: #fdba74;
}

.ptmmt-kpi-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ptmmt-kpi-icon svg {
    width: 18px;
    height: 18px;
}

/* Icon variant colors */
.ptmmt-kpi-icon.orange { background: #fff7ed; color: #ea580c; }
.ptmmt-kpi-icon.amber { background: #fef3c7; color: #d97706; }
.ptmmt-kpi-icon.sky { background: #e0f2fe; color: #0284c7; }
.ptmmt-kpi-icon.teal { background: #ccfbf1; color: #0d9488; }
.ptmmt-kpi-icon.purple { background: #f3e8ff; color: #9333ea; }
.ptmmt-kpi-icon.yellow { background: #fef9c3; color: #ca8a04; }

.ptmmt-kpi-content {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
}

.ptmmt-dashboard-container .ptmmt-kpi-label {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: var(--mmt-slate-500) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
}

.ptmmt-dashboard-container .ptmmt-kpi-val {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--mmt-dark) !important;
    line-height: 1.1 !important;
    white-space: nowrap;
}

.ptmmt-dashboard-container .ptmmt-kpi-unit {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--mmt-slate-500) !important;
    margin-left: 2px !important;
}

.ptmmt-dashboard-container .ptmmt-kpi-sub {
    font-size: 10px !important;
    color: var(--mmt-slate-400) !important;
    margin-top: 2px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
}

/* ---------------------------------------------------------
   3. Middle Section: Peta Persebaran Instalasi MMT
   --------------------------------------------------------- */
.ptmmt-map-wrapper-card {
    background: var(--mmt-card-bg);
    border: 1px solid var(--mmt-border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--mmt-shadow);
    margin-bottom: 24px;
    position: relative;
    width: 100%;
}

.ptmmt-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.ptmmt-dashboard-container .ptmmt-map-title-text {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--mmt-dark) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3 !important;
}

.ptmmt-map-stage-container {
    position: relative;
    width: 100%;
    height: 520px;
    background: radial-gradient(circle at 50% 40%, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid var(--mmt-slate-100);
    overflow: hidden;
}

#ptmmt-amcharts-map {
    width: 100%;
    height: 100%;
}

/* Map Color Legend in bottom-left */
.ptmmt-map-legend-box {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--mmt-border);
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    z-index: 10;
    pointer-events: auto;
    max-width: 220px;
}

.ptmmt-dashboard-container .ptmmt-legend-title {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: var(--mmt-slate-500) !important;
    margin-bottom: 5px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
}

.ptmmt-legend-scale {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ptmmt-dashboard-container .ptmmt-legend-scale-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px !important;
    color: var(--mmt-slate-700) !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.ptmmt-scale-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Floating Province Detail Card on Map (Inside Map Top-Right Corner) */
.ptmmt-floating-province-card {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 235px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid #fed7aa !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    box-shadow: 0 10px 25px -3px rgba(234, 88, 12, 0.10), 0 4px 10px -2px rgba(15, 23, 42, 0.04) !important;
    z-index: 20 !important;
    transition: all 0.25s ease;
}

.ptmmt-floating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--mmt-slate-100);
    padding-bottom: 6px;
}

.ptmmt-dashboard-container .ptmmt-floating-title {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #c2410c !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.ptmmt-dashboard-container .ptmmt-floating-badge {
    font-size: 9px !important;
    font-weight: 700 !important;
    background: #fff7ed !important;
    color: #ea580c !important;
    padding: 2px 6px !important;
    border-radius: 999px !important;
    border: 1px solid #ffedd5 !important;
    text-transform: uppercase !important;
    flex-shrink: 0;
    line-height: 1.2 !important;
}

.ptmmt-floating-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.ptmmt-dashboard-container .ptmmt-floating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px !important;
    color: var(--mmt-slate-600) !important;
    line-height: 1.3 !important;
}

.ptmmt-floating-row-label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ptmmt-floating-row-label svg {
    color: #ea580c;
    flex-shrink: 0;
}

.ptmmt-dashboard-container .ptmmt-floating-row-val {
    font-weight: 700 !important;
    color: var(--mmt-slate-900) !important;
}

.ptmmt-dashboard-container .ptmmt-floating-link {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--mmt-primary) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2 !important;
}

.ptmmt-dashboard-container .ptmmt-floating-link:hover {
    color: var(--mmt-primary-hover) !important;
    text-decoration: underline !important;
}

/* ---------------------------------------------------------
   4. Bottom Grid: 3 Columns Overview (Top 10, Hospitals, Coverage)
   --------------------------------------------------------- */
.ptmmt-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 16px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.ptmmt-overview-card {
    background: #ffffff !important;
    border: 1px solid var(--mmt-border) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.ptmmt-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    width: 100%;
}

/* Card Titles strictly 14px bold */
.ptmmt-dashboard-container .ptmmt-card-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--mmt-dark) !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ptmmt-dashboard-container .ptmmt-card-subtitle {
    font-size: 11px !important;
    color: var(--mmt-slate-400) !important;
    margin-top: 2px !important;
    line-height: 1.2 !important;
}

/* Column 1: Top 10 Table */
.ptmmt-table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
}

.ptmmt-top-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px !important;
}

.ptmmt-dashboard-container .ptmmt-top-table th {
    text-align: left;
    padding: 7px 6px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: var(--mmt-slate-400) !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid var(--mmt-slate-200) !important;
    white-space: nowrap;
    line-height: 1.2 !important;
}

.ptmmt-dashboard-container .ptmmt-top-table th:last-child {
    text-align: right;
}

.ptmmt-dashboard-container .ptmmt-top-table td {
    padding: 6px 6px !important;
    border-bottom: 1px solid var(--mmt-slate-100) !important;
    color: var(--mmt-slate-700) !important;
    vertical-align: middle !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
}

.ptmmt-top-table tr {
    cursor: pointer;
    transition: background 0.15s;
}

.ptmmt-top-table tr:hover {
    background: #fff7ed;
}

.ptmmt-top-table tr.active-row {
    background: #ffedd5;
    font-weight: 700;
}

.ptmmt-dashboard-container .ptmmt-top-table td:last-child {
    text-align: right;
    font-weight: 700 !important;
    color: var(--mmt-dark) !important;
    white-space: nowrap;
}

.ptmmt-rank-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--mmt-slate-100);
    color: var(--mmt-slate-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.ptmmt-rank-badge.top1 { background: #fef3c7; color: #d97706; }
.ptmmt-rank-badge.top2 { background: #e0f2fe; color: #0284c7; }
.ptmmt-rank-badge.top3 { background: #f1f5f9; color: #475569; }

/* Column 2: Instalasi Terbaru (Daftar & Gambar RS) */
.ptmmt-hospitals-scroll {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 4px;
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.ptmmt-hospitals-scroll::-webkit-scrollbar {
    width: 4px;
}
.ptmmt-hospitals-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.ptmmt-hospitals-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.ptmmt-hospital-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #ffffff;
    border: 1px solid var(--mmt-slate-200);
    border-radius: 10px;
    transition: all 0.2s;
    min-width: 0;
    width: 100%;
}

.ptmmt-hospital-row:hover {
    border-color: #fdba74;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.06);
}

.ptmmt-hospital-thumb {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f5f9;
}

.ptmmt-hospital-details {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
}

/* Hospital Name Titles strictly 12px bold */
.ptmmt-dashboard-container .ptmmt-hospital-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--mmt-dark) !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.3 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ptmmt-dashboard-container .ptmmt-hospital-meta {
    font-size: 11px !important;
    color: var(--mmt-slate-500) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
    line-height: 1.3 !important;
}

.ptmmt-hospital-meta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ptmmt-dashboard-container .ptmmt-hospital-tag {
    font-size: 9px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    background: #fff7ed !important;
    color: #c2410c !important;
    border: 1px solid #ffedd5 !important;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2 !important;
}

.ptmmt-dashboard-container .ptmmt-card-footer-link {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--mmt-slate-100);
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--mmt-primary) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2 !important;
}

.ptmmt-dashboard-container .ptmmt-card-footer-link:hover {
    color: var(--mmt-primary-hover) !important;
    text-decoration: underline !important;
}

/* Column 3: Cakupan Wilayah & Komitmen */
.ptmmt-coverage-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-width: 0;
    width: 100%;
}

.ptmmt-coverage-stats {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--mmt-slate-100);
    margin-bottom: 12px;
}

.ptmmt-dashboard-container .ptmmt-coverage-big-num {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: var(--mmt-dark) !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.ptmmt-dashboard-container .ptmmt-coverage-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--mmt-slate-500) !important;
    margin-top: 4px !important;
    line-height: 1.2 !important;
}

.ptmmt-progress-wrapper {
    margin-top: 10px;
}

.ptmmt-dashboard-container .ptmmt-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--mmt-slate-600) !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
}

.ptmmt-progress-bar {
    height: 8px;
    background: var(--mmt-slate-100);
    border-radius: 999px;
    overflow: hidden;
}

.ptmmt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    border-radius: 999px;
    transition: width 1s ease-in-out;
}

.ptmmt-quote-box {
    background: #fff7ed;
    border-left: 3px solid #ea580c;
    border-radius: 0 10px 10px 0;
    padding: 10px 12px;
    margin-top: auto;
}

.ptmmt-dashboard-container .ptmmt-quote-text {
    font-size: 11px !important;
    line-height: 1.45 !important;
    color: #9a3412 !important;
    margin: 0 0 4px 0 !important;
    font-style: italic !important;
}

.ptmmt-dashboard-container .ptmmt-quote-author {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #ea580c !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* Footer Copyright */
.ptmmt-dashboard-container .ptmmt-dashboard-footer {
    text-align: center;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid var(--mmt-slate-200);
    font-size: 11px !important;
    color: var(--mmt-slate-400) !important;
    line-height: 1.3 !important;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS (Tablets, iPads & Mobile Screens)
   ========================================================= */

/* Large Tablets & Medium Laptops (<= 1080px) */
@media (max-width: 1080px) {
    .ptmmt-metrics-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .ptmmt-bottom-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .ptmmt-bottom-grid > .ptmmt-overview-card:last-child {
        grid-column: 1 / -1;
    }

    .ptmmt-map-stage-container {
        height: 460px;
    }
}

/* Tablets & Mobile Landscape (<= 860px) */
@media (max-width: 860px) {
    .ptmmt-map-wrapper-card {
        padding: 14px;
    }

    .ptmmt-map-stage-container {
        height: 400px;
    }

    .ptmmt-floating-province-card {
        top: 10px !important;
        right: 10px !important;
        width: 210px !important;
        padding: 10px 12px !important;
    }

    /* Horizontal compact map legend */
    .ptmmt-map-legend-box {
        bottom: 8px;
        left: 8px;
        padding: 6px 10px;
        background: rgba(255, 255, 255, 0.95);
        max-width: 85%;
    }

    .ptmmt-dashboard-container .ptmmt-legend-title {
        font-size: 9px !important;
        margin-bottom: 4px !important;
    }

    .ptmmt-legend-scale {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px 10px;
    }

    .ptmmt-dashboard-container .ptmmt-legend-scale-item {
        font-size: 10px !important;
        gap: 5px !important;
    }
}

/* Mobile Screens (<= 640px) */
@media (max-width: 640px) {
    .ptmmt-top-header {
        margin-bottom: 12px;
    }

    .ptmmt-dashboard-container .ptmmt-top-main-title {
        font-size: 18px !important;
    }

    .ptmmt-dashboard-container .ptmmt-top-sub-title {
        font-size: 12px !important;
    }

    /* Metrics: 2 columns on mobile */
    .ptmmt-metrics-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .ptmmt-kpi-card {
        padding: 10px 10px;
        gap: 8px;
    }

    .ptmmt-kpi-icon {
        width: 32px;
        height: 32px;
    }

    .ptmmt-kpi-icon svg {
        width: 16px;
        height: 16px;
    }

    .ptmmt-dashboard-container .ptmmt-kpi-val {
        font-size: 16px !important;
    }

    .ptmmt-dashboard-container .ptmmt-kpi-label {
        font-size: 9px !important;
    }

    .ptmmt-dashboard-container .ptmmt-kpi-sub {
        font-size: 9px !important;
    }

    /* Map Stage */
    .ptmmt-map-stage-container {
        height: 340px;
    }

    .ptmmt-floating-province-card {
        top: 8px !important;
        right: 8px !important;
        width: 190px !important;
        padding: 8px 10px !important;
    }

    .ptmmt-dashboard-container .ptmmt-floating-title {
        font-size: 12px !important;
        max-width: 110px !important;
    }

    .ptmmt-dashboard-container .ptmmt-floating-row {
        font-size: 9.5px !important;
    }

    /* Legend on mobile */
    .ptmmt-map-legend-box {
        bottom: 6px;
        left: 6px;
        padding: 4px 6px;
    }

    .ptmmt-legend-scale {
        gap: 3px 6px;
    }

    .ptmmt-dashboard-container .ptmmt-legend-scale-item {
        font-size: 8.5px !important;
    }

    .ptmmt-scale-dot {
        width: 6px;
        height: 6px;
    }

    /* Bottom Grid single column */
    .ptmmt-bottom-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .ptmmt-overview-card {
        padding: 14px;
    }

    .ptmmt-hospitals-scroll {
        max-height: 300px;
    }

    .ptmmt-dashboard-container .ptmmt-coverage-big-num {
        font-size: 30px !important;
    }
}

/* Extra Small Screens (<= 380px) */
@media (max-width: 380px) {
    .ptmmt-metrics-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .ptmmt-map-stage-container {
        height: 300px;
    }

    .ptmmt-floating-province-card {
        width: 165px !important;
        padding: 6px 8px !important;
    }
}
