    /* -- COORD PICKER MAP (in add-loc modal) ------------------- */
    .coord-picker-map {
      height: 280px;
      border-radius: 8px;
      overflow: hidden;
      border: 1.5px solid var(--border);
      margin-bottom: 8px;
      cursor: crosshair
    }

    .coord-picker-hint {
      font-size: 11px;
      color: var(--text-dim);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      background: rgba(30, 77, 140, 0.05);
      border: 1px solid rgba(30, 77, 140, 0.15);
      border-radius: 6px
    }

    .coord-marker-shell {
      background: transparent;
      border: 0
    }

    .coord-target-marker {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #1e4d8c;
      border: 3px solid #fff;
      box-shadow: 0 0 0 2px rgba(30, 77, 140, 0.2), 0 0 10px rgba(30, 77, 140, 0.45)
    }

    .coord-user-marker {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(9, 165, 140, 0.18);
      border: 2px solid rgba(9, 165, 140, 0.38);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 3px rgba(9, 165, 140, 0.08)
    }

    .coord-user-marker span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #09a58c;
      border: 2px solid #fff;
      box-shadow: 0 0 10px rgba(9, 165, 140, 0.45)
    }

    /* -- FIELD MAP POPUP BUTTON --------------------------------- */
    .fmap-popup-btn {
      width: 100%;
      padding: 7px;
      margin-top: 8px;
      background: linear-gradient(135deg, #1e4d8c, #163a6b);
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      font-family: var(--sans);
      letter-spacing: 0.3px
    }

    .fmap-popup-btn:hover {
      opacity: 0.85
    }

    ::-webkit-scrollbar {
      width: 5px;
      height: 5px
    }

    ::-webkit-scrollbar-track {
      background: transparent
    }

    ::-webkit-scrollbar-thumb {
      background: var(--border2);
      border-radius: 3px
    }

    .leaflet-tile {
      filter: none
    }

    .leaflet-popup-content-wrapper {
      background: var(--surface) !important;
      border: 1px solid var(--border) !important;
      border-radius: 8px !important;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
      color: var(--text) !important
    }

    .leaflet-popup-content {
      color: var(--text) !important;
      font-family: var(--sans);
      font-size: 13px
    }

    .leaflet-popup-tip {
      background: var(--surface) !important
    }

    .leaflet-container {
      background: #e8edf5 !important
    }

    .gas-indicator {
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: var(--sans);
      font-size: 9px;
      padding: 3px 8px;
      border-radius: 4px;
      background: rgba(26, 115, 64, 0.08);
      color: var(--green);
      border: 1px solid rgba(26, 115, 64, 0.25);
      font-weight: 600
    }

    .gas-indicator.demo {
      background: rgba(183, 121, 31, 0.08);
      color: var(--amber);
      border-color: rgba(183, 121, 31, 0.25)
    }

    .pending-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 3px 10px;
      border-radius: 4px;
      background: rgba(183, 121, 31, 0.08);
      border: 1px solid rgba(183, 121, 31, 0.25);
      color: var(--amber);
      font-size: 11px;
      font-family: var(--sans);
      font-weight: 600
    }

    /* -- HAMBURGER ------------------------------------------ */
    .hamburger {
      display: none;
      background: none;
      border: none;
      color: var(--navy);
      font-size: 20px;
      cursor: pointer;
      padding: 4px 8px;
      border-radius: 6px;
      line-height: 1;
      transition: background 0.15s;
      margin-right: 6px;
      flex-shrink: 0
    }

    .hamburger:hover {
      background: var(--surface2)
    }

    /* -- EMPTY STATE TABLE ---------------------------------- */
    .table-empty {
      text-align: center;
      padding: 40px 20px;
      color: var(--text-muted);
      font-size: 13px
    }

    .table-empty-icon {
      font-size: 32px;
      margin-bottom: 8px;
      opacity: 0.5
    }

    /* -- DIVIDER -------------------------------------------- */
    .admin-panel {
      scroll-behavior: smooth
    }

    .field-scroll {
      scroll-behavior: smooth
    }

    .export-card:hover {
      border-color: var(--cyan);
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px)
    }

