    /* ── Places (map of occurrences) Screen ───────────────── */
    .places-screen {
      display: none;
      position: fixed; inset: 0;
      background: #fff;
      z-index: 9200;
      flex-direction: column;
    }
    .places-screen.active { display: flex; }
    .places-root { flex: 1; display: flex; flex-direction: column; min-height: 0; }
    .places-view { display: flex; flex-direction: column; flex: 1; min-height: 0; }
    .places-toolbar {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 16px; background: #2c3e50; color: #fff;
    }
    .places-toolbar strong { margin-right: 10px; }
    .places-meta { font-size: .85em; color: #bdc3c7; }
    .places-toolbar-actions { display: flex; gap: 8px; }
    .places-toolbar-actions button {
      padding: 6px 12px; border: none; border-radius: 4px;
      background: #16a085; color: #fff; font-weight: 600; cursor: pointer;
      font-size: .85rem;
    }
    .places-toolbar-actions button:hover { filter: brightness(1.1); }
    .places-toolbar-actions .places-btn-secondary { background: rgba(255,255,255,.2); }

    .places-body { flex: 1; display: flex; min-height: 0; overflow: hidden; }
    .places-col { display: flex; flex-direction: column; min-height: 0; border-right: 1px solid #dcdde1; }
    .places-col:last-child { border-right: none; }
    .places-col-list { width: 280px; }
    .places-col-detail { width: 340px; overflow-y: auto; padding: 12px; }
    .places-col-map { flex: 1; position: relative; }
    .places-col-list input[type="search"] {
      padding: 8px 10px; margin: 8px; border: 1px solid #dcdde1; border-radius: 4px;
      font-size: .85rem; outline: none;
    }
    .places-list { flex: 1; overflow-y: auto; }
    .places-list-item {
      display: grid; grid-template-columns: 22px 1fr auto;
      gap: 6px; align-items: center;
      padding: 6px 10px; cursor: pointer; font-size: .85rem;
      border-bottom: 1px solid #eee;
    }
    .places-list-item:hover { background: #f4f6f8; }
    .places-list-item.selected { background: #e3f1fb; }
    .places-list-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .places-list-count { color: #7f8c8d; font-size: .8em; }
    .places-list-empty { padding: 16px; color: #95a5a6; font-style: italic; font-size: .85rem; }
    .places-list-group-header { background: #f4f6f8; font-weight: 600; cursor: pointer; }
    .places-list-group-header:hover { background: #eaecf0; }
    .places-list-sub-item { padding-left: 24px; background: #fafbfc; font-size: .82rem; }
    .places-list-sub-item:hover { background: #f0f3f6; }
    .places-sub-indent { color: #aaa; font-size: .85em; }

    .places-col-detail h3 { margin: 0 0 12px; font-size: 1.05rem; color: #2c3e50; word-wrap: break-word; }
    .places-col-detail h4 { margin: 0 0 6px; font-size: .9rem; color: #2c3e50; }
    .places-detail-section {
      margin-bottom: 14px; padding: 10px; border: 1px solid #dcdde1;
      border-radius: 6px; background: #fafbfc; font-size: .85rem;
    }
    .places-detail-section ul { margin: 4px 0; padding-left: 18px; }
    .places-detail-section label { display: block; margin-top: 8px; font-weight: 600; font-size: .78rem; color: #555; }
    .places-detail-section label textarea,
    .places-detail-section label input[type="text"] {
      width: 100%; margin-top: 4px; padding: 6px 8px;
      border: 1px solid #dcdde1; border-radius: 4px; font-size: .85rem;
      font-family: inherit; box-sizing: border-box; outline: none;
    }
    .places-detail-section label textarea:focus,
    .places-detail-section label input[type="text"]:focus { border-color: var(--clr-primary); }
    .places-detail-coords { font-family: monospace; color: #7f8c8d; font-size: .8rem; margin-bottom: 4px; }
    .places-detail-aliases { margin: 6px 0; color: #555; }
    .places-detail-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
    .places-detail-actions button {
      padding: 6px 10px; border: none; border-radius: 4px;
      background: var(--clr-primary); color: #fff; cursor: pointer; font-weight: 600; font-size: .8rem;
    }
    .places-detail-actions button:hover { filter: brightness(1.1); }
    .places-detail-actions .places-btn-secondary { background: #95a5a6; }
    .places-detail-actions .places-btn-danger { background: #c0392b; }
    .places-candidates { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
    .places-candidate {
      display: flex; flex-direction: column; align-items: flex-start;
      padding: 6px 10px; background: #fff; border: 1px solid #dcdde1; border-radius: 4px;
      cursor: pointer; text-align: left; font-size: .82rem; font-family: inherit;
    }
    .places-candidate:hover { background: #eaf2fb; border-color: var(--clr-primary); }
    .places-candidate span { color: #7f8c8d; font-size: .8em; margin-top: 2px; }
    .places-hint { color: #7f8c8d; font-size: .82rem; margin: 8px 0 0; }
    .places-empty { color: #95a5a6; padding: 20px; text-align: center; }
    .places-map { position: absolute; inset: 0; }
    .places-map-error { position: absolute; bottom: 8px; left: 8px; color: #c0392b; font-size: .85rem; }
    .places-geocode-results { margin-top: 8px; }
    .places-bulk-map-hint {
      position: absolute; top: 0; left: 0; right: 0; z-index: 9300;
      background: rgba(41,128,185,.92); color: #fff; padding: 8px 14px;
      font-size: .85rem; text-align: center; pointer-events: none;
    }
    .modal.places-bulk-modal { width: 66vw; max-width: 66vw; max-height: 90vh; display: flex; flex-direction: column; }
    .places-bulk-modal-body { flex: 1; overflow: hidden; display: flex; min-height: 0; }
    .places-bulk-col-places {
      flex: 1; display: flex; flex-direction: column; border-right: 1px solid #dcdde1; min-width: 0;
    }
    .places-bulk-col-toolbar {
      padding: 8px 12px; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 6px; flex-shrink: 0;
    }
    .places-bulk-col-toolbar strong { flex: 1; font-size: .85rem; }
    .places-bulk-col-toolbar button {
      font-size: .78rem; padding: 3px 8px; border: 1px solid #bdc3c7; border-radius: 3px;
      background: #fff; cursor: pointer; color: #333;
    }
    .places-bulk-col-toolbar button:hover { background: #f4f6f8; }
    .places-bulk-item {
      display: flex; align-items: center; gap: 8px; padding: 5px 12px; cursor: pointer; font-size: .85rem;
    }
    .places-bulk-item:hover { background: #f4f6f8; }
    .places-bulk-item input[type=checkbox] { flex-shrink: 0; cursor: pointer; }
    .places-bulk-item-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .places-bulk-item-count { color: #7f8c8d; font-size: .8em; flex-shrink: 0; }
    .places-bulk-col-actions {
      width: 280px; flex-shrink: 0; display: flex; flex-direction: column; padding: 12px; gap: 10px; overflow-y: auto;
    }
    .places-bulk-selected-count { font-weight: 600; color: #2980b9; font-size: .85rem; }
    .places-bulk-section-label { font-size: .8rem; color: #555; display: block; margin-bottom: 6px; }
    .places-bulk-divider { border: none; border-top: 1px solid #eee; margin: 0; }
    .places-bulk-map-btn {
      width: 100%; padding: 7px 12px; border: 1px solid #95a5a6; border-radius: 4px;
      cursor: pointer; font-size: .85rem; background: #95a5a6; color: #fff; font-weight: 600;
    }
    .places-bulk-map-btn:hover { filter: brightness(1.1); }
    .places-bulk-error { color: #c0392b; font-size: .8rem; display: none; }

    .modal {
      background: var(--clr-white);
      border-radius: var(--radius);
      box-shadow: 0 8px 32px rgba(0,0,0,.2);
      width: 420px;
      max-width: 92vw;
      max-height: 80vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--clr-light);
    }
    .modal-header h3 {
      font-size: 1rem;
      font-weight: 700;
    }
    .modal-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border: none;
      border-radius: var(--radius);
      background: transparent;
      color: #7f8c8d;
      cursor: pointer;
      font-size: 1.2rem;
      transition: background .15s;
    }
    .modal-close:hover { background: var(--clr-light); }

    .modal-search {
      padding: 12px 20px;
      border-bottom: 1px solid var(--clr-light);
    }
    .modal-search input {
      width: 100%;
      padding: 8px 12px;
      border: 1px solid #dcdde1;
      border-radius: var(--radius);
      font-size: .9rem;
      outline: none;
      transition: border-color .15s;
    }
    .modal-search input:focus { border-color: var(--clr-primary); }

    .modal-list {
      flex: 1;
      overflow-y: auto;
      padding: 8px 0;
    }

    .modal-list-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      cursor: pointer;
      font-size: .88rem;
      transition: background .12s;
    }
    .modal-list-item:hover { background: rgba(52,152,219,.08); }
    .modal-list-item svg { width: 22px; height: 22px; flex-shrink: 0; fill: #95a5a6; }
    .modal-list-item .modal-item-name { font-weight: 600; }
    .modal-list-item .modal-item-dates { font-size: .78rem; color: #7f8c8d; margin-left: auto; }
    .modal-list-item.create-new {
      color: var(--clr-primary);
      font-weight: 600;
      border-top: 1px solid var(--clr-light);
    }
    .modal-list-item.create-new svg { fill: var(--clr-primary); }

    .modal-footer {
      padding: 12px 20px;
      border-top: 1px solid var(--clr-light);
      display: flex;
      justify-content: flex-end;
      gap: 8px;
    }
    .modal-footer button {
      padding: 7px 18px;
      border: 1px solid #dcdde1;
      border-radius: var(--radius);
      background: var(--clr-white);
      font-size: .85rem;
      font-weight: 600;
      color: #7f8c8d;
      cursor: pointer;
      transition: background .15s;
    }
    .modal-footer button:hover { background: var(--clr-light); }
    .modal-footer .btn-primary {
      background: var(--clr-primary);
      color: var(--clr-white);
      border-color: var(--clr-primary);
    }
    .modal-footer .btn-primary:hover { filter: brightness(1.1); background: var(--clr-primary); }
    .modal-footer .btn-danger {
      background: var(--clr-danger);
      color: var(--clr-white);
      border-color: var(--clr-danger);
    }
    .modal-footer .btn-danger:hover { filter: brightness(1.1); background: var(--clr-danger); }

