﻿      height: 100%;
      min-height: 400px
    }

    #map-picker {
      width: 100%;
      height: 450px;
      min-height: 450px;
      background: #eef4fb
    }

    .map-picker-stage {
      position: relative;
      height: 100%
    }

    .map-picker-info {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 999;
      width: min(340px, calc(100% - 24px));
      background: rgba(255, 255, 255, .96);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 12px 14px;
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(6px)
    }

    .map-picker-info-title {
      font-size: 12px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px
    }

    .map-picker-info-subtitle {
      font-size: 11px;
      line-height: 1.45;
      color: var(--text-muted);
      margin-bottom: 10px
    }

    .map-picker-coord-grid {
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 6px 10px;
      align-items: start;
      font-size: 11px
    }

    .map-picker-coord-label {
      color: var(--text-dim);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .3px
    }

    .map-picker-coord-value {
      color: var(--text);
      font-family: var(--mono)
    }

    .map-picker-coord-value.is-empty {
      color: var(--text-muted);
      font-style: italic
    }

    .map-picker-coord-value.is-positive {
      color: #047857
    }

    .map-picker-coord-value.is-negative {
      color: #b45309
    }

    .map-picker-origin-icon,
    .map-picker-current-icon {
      display: flex;
      align-items: center;
      justify-content: center
    }

    .map-picker-origin-dot {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 3px solid rgba(220, 38, 38, .65);
      background: rgba(255, 255, 255, .4);
      box-shadow: 0 0 0 4px rgba(220, 38, 38, .16)
    }

    .map-picker-current-dot {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: #2563eb;
      border: 3px solid rgba(255, 255, 255, .95);
      box-shadow: 0 10px 18px rgba(37, 99, 235, .28)
    }

    .map-controls {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .map-filter-panel {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 14px;
      box-shadow: var(--shadow-lg);
      min-width: 180px
    }

    .map-filter-title {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-dim);
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 10px
    }

    .map-filter-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
      cursor: pointer
    }

    .map-filter-row label {
      font-size: 12px;
      color: var(--text);
      cursor: pointer
    }

    .map-filter-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0
    }

    .map-container {
      position: relative;
      flex: 1;
      overflow: hidden
    }

    .map-kawasan-label {
      background: rgba(255, 255, 255, .92);
      border: 1px solid rgba(30, 58, 95, .18);
      border-radius: 999px;
      box-shadow: 0 2px 8px rgba(30, 58, 95, .12);
      color: var(--navy);
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      white-space: nowrap;
    }

    .map-kawasan-label:before {
      display: none;
    }

    /* â”€â”€ MODAL â”€â”€ */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 20, 40, .5);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 20px
    }

    .modal-overlay.open {
      display: flex
    }

    .modal {
      background: var(--surface);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
      width: 100%;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      overflow: hidden
    }

    .modal-sm {
      max-width: 460px
    }

    .modal-md {
      max-width: 580px
    }

    .modal-lg {
      max-width: 760px
    }

    .modal-xl {
      max-width: 940px
    }

    #modal-map-picker .modal {
      min-height: 560px
    }

    #modal-map-picker .modal-body {
      padding: 0;
      height: 450px;
      min-height: 450px;
      overflow: hidden
    }

    #modal-map-picker .map-picker-stage {
      height: 100%;
      min-height: 450px
    }

    .modal-header {
      padding: 18px 22px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0
    }

    .modal-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy)
    }

    .modal-close {
