:root {
    --primary: #1e3a8a;
    --sidebar-bg: #0f172a;
    --sidebar-text: #94a3b8;
    --sidebar-active: #2563eb;
    --bg-color: #f1f5f9;
    --card-bg: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    /* KPI Colors */
    --c-blue: #3b82f6;
    --c-blue-light: #eff6ff;
    --c-green: #10b981;
    --c-green-light: #ecfdf5;
    --c-purple: #8b5cf6;
    --c-purple-light: #f5f3ff;
    --c-orange: #f59e0b;
    --c-orange-light: #fffbeb;
    --c-red: #ef4444;
    --c-red-light: #fef2f2;
    --c-teal: #14b8a6;
    --c-teal-light: #f0fdfa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-size: 14px;
}

.app-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--sidebar-bg);
    color: white;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h2 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo p {
    font-size: 10px;
    color: var(--sidebar-text);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--sidebar-text);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.sidebar-nav li a:hover {
    color: white;
    background-color: rgba(255,255,255,0.05);
}

.sidebar-nav li.active a {
    background-color: var(--sidebar-active);
    color: white;
    border-radius: 0 20px 20px 0;
    margin-right: 20px;
}

.sidebar-nav li a i {
    font-size: 18px;
}

.nav-section {
    padding: 16px 24px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    letter-spacing: 1px;
}

.sidebar-footer {
    padding: 20px;
}

.promo-box {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
}

.copyright {
    font-size: 11px;
    color: var(--sidebar-text);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Topbar */
.topbar {
    height: 70px;
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
}

.topbar-left h1 {
    font-size: 15px;
    font-weight: 600;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    position: relative;
    width: 250px;
}

.search-bar i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar input {
    width: 100%;
    padding: 8px 12px 8px 36px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background-color: #f8fafc;
    font-size: 13px;
    outline: none;
}

.notifications {
    display: flex;
    gap: 10px;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    position: relative;
    cursor: pointer;
}

.badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background-color: var(--c-red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info .name {
    font-size: 13px;
    font-weight: 600;
}

.user-info .role {
    font-size: 11px;
    color: var(--text-muted);
}

/* Content Area */
.content-area {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.title-section h2 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 4px;
}

.title-section p {
    color: var(--text-muted);
}

.filters {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.filter-group select {
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: white;
    font-size: 13px;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.region-selects {
    display: flex;
    gap: 6px;
}

.region-selects select {
    min-width: 150px;
}

.region-selects select:disabled {
    background-color: #f8fafc;
    color: var(--text-muted);
    cursor: not-allowed;
}

.desa-map-pin-container {
    background: transparent;
    border: 0;
}

.desa-map-pin {
    display: block;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    border: 3px solid #ffffff;
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.35);
    transform: rotate(-45deg);
}

.desa-map-pin::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    margin: 5px;
    background: #ffffff;
    border-radius: 50%;
}

.webgis-desa-pin-container {
    background: transparent;
    border: 0;
}

.webgis-desa-pin {
    display: block;
    width: 22px;
    height: 22px;
    background: var(--pin-color, #3b82f6);
    border: 3px solid #ffffff;
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.35);
    transform: rotate(-45deg);
}

.webgis-desa-pin::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin: 5px;
    background: #ffffff;
    border-radius: 50%;
}

.last-update {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.last-update i {
    font-size: 20px;
    color: var(--text-muted);
}

.last-update .label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
}

.last-update .value {
    font-size: 12px;
    font-weight: 600;
}

/* KPI Grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.kpi-card {
    background-color: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.bg-blue-light { background-color: var(--c-blue-light); }
.bg-green-light { background-color: var(--c-green-light); }
.bg-purple-light { background-color: var(--c-purple-light); }
.bg-orange-light { background-color: var(--c-orange-light); }
.bg-red-light { background-color: var(--c-red-light); }
.bg-teal-light { background-color: var(--c-teal-light); }

.text-blue { color: var(--c-blue); }
.text-green { color: var(--c-green); }
.text-purple { color: var(--c-purple); }
.text-orange { color: var(--c-orange); }
.text-red { color: var(--c-red); }
.text-teal { color: var(--c-teal); }

.icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: white;
}

.kpi-info h3 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.kpi-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.kpi-value .number {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.kpi-value .trend {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.trend.positive { color: var(--c-green); }

.kpi-info .comparison {
    font-size: 10px;
    color: var(--text-muted);
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.card-header h3 {
    font-size: 15px;
    font-weight: 600;
}

.btn-outline {
    background: white;
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--c-blue);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Map specific */
.map-container {
    height: 400px;
    width: 100%;
}

.map-legend {
    padding: 16px 20px;
    background: white;
}
.map-legend h4 { font-size: 12px; margin-bottom: 8px;}
.map-legend ul {
    list-style: none;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.map-legend li {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* Chart specific */
.chart-container {
    padding: 20px;
    flex: 1;
    position: relative;
    min-height: 250px;
}

.donut-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.donut-inner .total-label { display: block; font-size: 12px; color: var(--text-muted); }
.donut-inner .total-number { display: block; font-size: 24px; font-weight: 700; color: #0f172a; margin: 4px 0; }
.donut-inner .total-text { display: block; font-size: 12px; color: var(--text-muted); }

.custom-legend {
    padding: 0 20px 20px;
}
.custom-legend ul { list-style: none; display: flex; flex-direction: column; gap: 8px;}
.custom-legend li { display: flex; align-items: center; justify-content: space-between; font-size: 12px;}
.legend-label { display: flex; align-items: center; gap: 8px; }
.legend-value { font-weight: 600; display: flex; gap: 4px;}
.legend-percent { color: var(--text-muted); font-weight: 400;}

/* Bottom Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 20px;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
}

.impact-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.impact-item p { font-size: 12px; font-weight: 600; margin-bottom: 12px; height: 36px;}
.impact-value { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 8px;}
.icon-circle { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px;}
.impact-value h2 { font-size: 20px; }
.impact-desc { font-size: 11px; color: var(--text-muted); }

.sdg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
}
.sdg-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.sdg-icon { width: 40px; height: 40px; color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; border-radius: 4px; font-size: 20px;}
.sdg-1 { background: #e5243b; }
.sdg-2 { background: #dda63a; }
.sdg-4 { background: #c5192d; }
.sdg-6 { background: #26bde2; }
.sdg-8 { background: #a21942; }
.sdg-13 { background: #3f7e44; }

.sdg-info { flex: 1; }
.sdg-info h4 { font-size: 11px; font-weight: 600; margin-bottom: 4px;}
.progress-bar { height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; margin-bottom: 4px;}
.progress { height: 100%; }
.sdg-info span { font-size: 11px; font-weight: 600;}

.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th, .data-table td {
    padding: 12px 20px;
    text-align: left;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
}
.data-table th { color: var(--text-muted); font-weight: 600;}
.data-table tbody tr:hover { background-color: #f8fafc; }

/* Responsive adjustments */
@media (max-width: 1400px) {
    .kpi-grid { grid-template-columns: repeat(3, 1fr); }
    .main-grid { grid-template-columns: 1fr; }
    .bottom-grid { grid-template-columns: 1fr; }
}

/* Marker Cluster Customization */
.custom-cluster-icon {
    background-color: #3b82f6;
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ==========================================================================
   WEBGIS PAGE STYLES
   ========================================================================== */

.webgis-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.webgis-actions-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background-color: var(--c-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-primary:hover { background-color: #2563eb; }

.map-and-panel-wrapper {
    display: flex;
    gap: 20px;
    height: 600px;
}

.webgis-map-area {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

#webgis-map {
    width: 100%;
    height: 100%;
}

/* Basemap Switcher */
.basemap-control {
    position: absolute;
    top: 20px;
    left: 60px; /* Right of leaflet zoom */
    z-index: 1000;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}
.basemap-control .label {
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 6px;
}
.basemap-control button {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-main);
}
.basemap-control button:hover { background: #f8fafc; }
.basemap-control button.active {
    color: var(--c-blue);
    background: var(--c-blue-light);
}

/* Layer Panel Overlay */
.layer-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.layer-panel.collapsed .panel-content { display: none; }
.layer-panel.collapsed .close-btn { transform: rotate(180deg); }

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}
.panel-header h3 { font-size: 13px; font-weight: 600; }
.close-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); transition: transform 0.2s;}

.panel-content {
    padding: 16px;
    max-height: 480px;
    overflow-y: auto;
}
.layer-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toggle-label, .checkbox-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-main);
}
.checkbox-label { justify-content: flex-start; gap: 10px; }
.checkbox-label div { display: flex; align-items: center; gap: 8px; }
.panel-divider { border: 0; height: 1px; background: var(--border-color); margin: 16px 0; }
.panel-subtitle { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; font-weight: 600;}

/* Toggle Switch simple CSS */
.toggle-switch {
    appearance: none; width: 32px; height: 18px; background: #cbd5e1; border-radius: 10px; position: relative; cursor: pointer; outline: none;
}
.toggle-switch::after {
    content: ''; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; background: white; border-radius: 50%; transition: 0.2s;
}
.toggle-switch:checked { background: var(--c-blue); }
.toggle-switch:checked::after { left: 16px; }

.btn-reset {
    width: 100%; margin-top: 20px; padding: 8px; border: 1px solid var(--border-color); background: white; border-radius: 6px; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer;
}

/* Info Panel (Right Side) */
.webgis-info-panel {
    width: 320px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.empty-state {
    display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--text-muted); padding: 20px; text-align: center;
}
.empty-state i { font-size: 40px; margin-bottom: 10px; opacity: 0.5;}

.info-header-img { width: 100%; height: 160px; object-fit: cover; }
.info-body { padding: 20px; }
.info-close { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); color: white; border: none; border-radius: 50%; width: 24px; height: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;}
.info-title { font-size: 18px; font-weight: 700; margin-bottom: 4px;}
.info-subtitle { font-size: 12px; color: var(--text-muted); margin-bottom: 12px;}
.badge-status { display: inline-block; padding: 4px 10px; background: var(--c-green-light); color: var(--c-green); font-size: 10px; font-weight: 600; border-radius: 12px; margin-bottom: 20px;}
.info-section { margin-bottom: 20px; }
.info-section h5 { font-size: 11px; color: var(--text-muted); margin-bottom: 8px;}
.info-section p { font-size: 12px; font-weight: 500;}
.stats-row { display: flex; gap: 20px; }

.history-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.history-item { display: flex; gap: 12px; }
.history-year { font-weight: 700; font-size: 12px; width: 40px;}
.history-content h6 { font-size: 12px; margin-bottom: 2px;}
.history-content p { font-size: 11px; color: var(--text-muted);}

/* Bottom Grid for WebGIS */
.webgis-bottom-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
}
.summary-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
}
.stat-item {
    display: flex; flex-direction: column; padding: 12px; border-radius: 8px; border: 1px solid var(--border-color);
}
.stat-item .icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 8px;}
.stat-item h4 { font-size: 11px; color: var(--text-muted); margin-bottom: 4px;}
.stat-item h2 { font-size: 20px; margin-bottom: 2px;}
.stat-item span { font-size: 10px; color: var(--text-muted);}

/* ==========================================================================
   PROFIL DESA STYLES
   ========================================================================== */

.horizontal-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hbar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hbar-label {
    width: 80px;
    font-size: 11px;
    font-weight: 500;
    flex: none;
    text-align: left;
}
.hbar-track {
    flex: 1;
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
}
.hbar-fill {
    height: 100%;
    border-radius: 6px;
}
.hbar-value {
    width: 40px;
    font-size: 11px;
    font-weight: 700;
    text-align: right;
    flex: none;
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}
.doc-list li:last-child { border-bottom: none; }
.doc-list i { font-size: 24px; color: var(--c-blue); }
.doc-info { flex: 1; }
.doc-info h5 { font-size: 12px; font-weight: 600; margin-bottom: 2px; color: #0f172a; }
.doc-info span { font-size: 10px; color: var(--text-muted); font-weight: 500;}
.doc-date { font-size: 10px; color: var(--text-muted); font-weight: 500; flex: none; }

.simple-table th { padding-top: 0; }
.simple-table td { font-size: 12px; }

.chart-flex {
    display: flex; align-items: center; padding: 20px; gap: 20px;
}
.flex-legend { flex: 1; padding: 0;}
.card-footer-text { text-align: center; font-size: 12px; padding: 12px; border-top: 1px solid var(--border-color); color: var(--text-muted);}

/* ==========================================================================
   SDGs DESA STYLES
   ========================================================================== */

.sdg-prog-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sdg-prog-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sdg-prog-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    flex: none;
}
.sdg-prog-label {
    width: 130px;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-main);
    flex: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sdg-prog-track {
    flex: 1;
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}
.sdg-prog-fill {
    height: 100%;
    border-radius: 3px;
}
.sdg-prog-val {
    width: 24px;
    font-size: 9px;
    font-weight: 700;
    text-align: right;
    flex: none;
}
.sdg-prog-cat {
    width: 60px;
    font-size: 9px;
    font-weight: 600;
    text-align: left;
    flex: none;
}
