:root {
  --ink: #102f3a;
  --muted: #64808a;
  --line: #cadde1;
  --paper: #ffffff;
  --mist: #eef6f6;
  --teal: #087f8c;
  --teal-dark: #075966;
  --aqua: #d7eff0;
  --amber: #cc8512;
  --coral: #c74c43;
  --green: #23755d;
  --shadow: 0 22px 55px rgba(16, 47, 58, 0.10);
}

* { box-sizing: border-box; }

body.tracker-page {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  background:
    radial-gradient(circle at 87% 7%, rgba(8, 127, 140, 0.12), transparent 24rem),
    linear-gradient(rgba(16, 47, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 47, 58, 0.035) 1px, transparent 1px),
    #f4f8f7;
  background-size: auto, 32px 32px, 32px 32px, auto;
}

button, input, select { font: inherit; }
a { color: inherit; }

.tracker-header {
  min-height: 78px;
  padding: 12px clamp(20px, 3vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.tracker-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.tracker-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px 4px 14px 4px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--teal), #26aab2);
  box-shadow: 0 8px 20px rgba(8, 127, 140, 0.24);
  font-family: "Palatino Linotype", Georgia, serif;
  font-weight: 800;
}

.tracker-brand strong,
.tracker-brand small { display: block; }
.tracker-brand strong { font-family: "Palatino Linotype", Georgia, serif; font-size: 20px; }
.tracker-brand small { color: var(--muted); font-size: 12px; margin-top: 2px; }

.tracker-main {
  width: calc(100% - clamp(28px, 5vw, 84px));
  max-width: 1680px;
  margin: 0 auto;
  padding: 34px 0 56px;
}

.tracker-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(650px, 1.28fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.tracker-eyebrow {
  color: var(--teal);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin: 0 0 7px;
}

.tracker-intro h1,
.tracker-panel h2,
.upload-dialog h2,
.simple-error h1 {
  font-family: "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.025em;
}

.tracker-intro h1 { font-size: clamp(31px, 3vw, 50px); line-height: 1.02; margin: 0 0 12px; }
.tracker-intro > div > p:last-child { color: var(--muted); line-height: 1.55; max-width: 640px; margin: 0; }

.tracker-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 12px;
}

.tracker-summary article {
  min-height: 112px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 18px 5px 18px 5px;
  padding: 17px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16,47,58,.045);
}

.tracker-summary article::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  right: -22px;
  bottom: -25px;
  border-radius: 50%;
  background: var(--aqua);
}

.tracker-summary small { color: var(--muted); display: block; font-size: 11px; font-weight: 700; margin: 8px 0 2px; }
.tracker-summary strong { font-family: "Palatino Linotype", Georgia, serif; font-size: 30px; line-height: 1; }
.summary-icon { width: 29px; height: 29px; border: 1px solid currentColor; border-radius: 9px; display: grid; place-items: center; font-weight: 900; }
.summary-icon-all { color: var(--teal); }
.summary-icon-pending { color: var(--amber); }
.summary-icon-observed { color: var(--coral); }
.summary-icon-lifted { color: var(--green); }

.tracker-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px 8px 24px 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tracker-panel-head {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(100deg, #fff, var(--mist));
  border-bottom: 1px solid var(--line);
}

.tracker-panel h2,
.upload-dialog h2 { margin: 0; font-size: 28px; }
.tracker-filters { display: flex; gap: 10px; align-items: center; }
.tracker-search { position: relative; }
.tracker-search span { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--teal); font-size: 20px; }
.tracker-search input { padding-left: 40px; width: min(320px, 36vw); }

.tracker-filters input,
.tracker-filters select,
.form-field input,
.status-select {
  border: 1px solid #b8d0d5;
  border-radius: 10px;
  background: white;
  min-height: 42px;
  color: var(--ink);
  outline: none;
}
.tracker-filters input, .tracker-filters select { padding: 0 13px; }
.tracker-filters input:focus, .tracker-filters select:focus, .form-field input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,127,140,.12); }

.tracker-table-wrap { overflow-x: auto; }
.tracker-table { width: 100%; border-collapse: collapse; min-width: 1050px; }
.tracker-table th {
  padding: 13px 18px;
  background: #f5f9f8;
  color: #486a74;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--line);
}
.tracker-table td { padding: 16px 18px; border-bottom: 1px solid #dbe7e9; vertical-align: middle; }
.tracker-table tbody tr { transition: background .18s ease, transform .18s ease; }
.tracker-table tbody tr:hover { background: #f8fbfa; }
.tracker-table tbody tr:last-child td { border-bottom: 0; }

.plan-title { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.plan-title strong, .plan-title small, .observation-count + small, .plan-file-size { display: block; }
.plan-title strong { font-size: 14px; }
.plan-title small, .plan-file-size, .observation-count + small { color: var(--muted); margin-top: 4px; font-size: 11px; }
.plan-file-icon {
  width: 43px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 5px 5px 12px 5px;
  color: white;
  background: linear-gradient(150deg, #df6259, #a92f2a);
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(169,47,42,.18);
}
.plan-file-link { display: block; max-width: 250px; color: var(--teal-dark); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.observation-count { width: 38px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--aqua); color: var(--teal-dark); font-weight: 900; }
.status-select { min-height: 36px; padding: 0 32px 0 11px; font-size: 12px; font-weight: 800; }
.status-pendiente { color: #8a5a08; background: #fff6dc; border-color: #efd49c; }
.status-observado { color: #9b322d; background: #fff0ef; border-color: #efbbb7; }
.status-levantado { color: #176249; background: #e8f5ef; border-color: #b9dfcf; }
.tracker-table time { color: #536f78; font-size: 12px; white-space: nowrap; }
.plan-actions { display: flex; align-items: center; gap: 7px; white-space: nowrap; }

.tracker-primary,
.tracker-secondary {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px 3px 10px 3px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.tracker-primary { color: white; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); box-shadow: 0 8px 18px rgba(7,89,102,.19); }
.tracker-primary:hover, .tracker-secondary:hover { transform: translateY(-1px); }
.tracker-secondary { color: var(--teal-dark); background: white; border-color: #b7d1d6; }
.tracker-primary.compact, .tracker-secondary { min-height: 35px; padding: 0 12px; font-size: 12px; }

.tracker-empty { min-height: 350px; padding: 48px 24px; display: grid; place-items: center; align-content: center; text-align: center; }
.tracker-empty > span { width: 72px; height: 80px; display: grid; place-items: center; color: white; background: linear-gradient(150deg, #df6259, #a92f2a); border-radius: 9px 9px 22px 9px; font-weight: 900; margin-bottom: 16px; box-shadow: 0 14px 28px rgba(169,47,42,.18); }
.tracker-empty h3 { font-family: "Palatino Linotype", Georgia, serif; font-size: 25px; margin: 0 0 7px; }
.tracker-empty p { margin: 0 0 20px; color: var(--muted); }
.tracker-no-results { text-align: center; color: var(--muted); padding: 38px; }

.tracker-flash { margin-bottom: 18px; padding: 13px 16px; border-radius: 12px; border: 1px solid; font-weight: 700; animation: reveal .35s ease both; }
.tracker-flash-success { color: #176249; background: #e8f5ef; border-color: #b9dfcf; }
.tracker-flash-error { color: #9b322d; background: #fff0ef; border-color: #efbbb7; }

.upload-dialog {
  width: min(620px, calc(100vw - 30px));
  border: 0;
  border-radius: 24px 7px 24px 7px;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(8,35,43,.3);
}
.upload-dialog::backdrop { background: rgba(9,37,45,.62); backdrop-filter: blur(4px); }
.upload-dialog form { padding: 26px; }
.upload-dialog header, .upload-dialog footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.upload-dialog header { margin-bottom: 24px; }
.upload-dialog footer { margin-top: 24px; justify-content: flex-end; }
.dialog-close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: white; color: var(--ink); cursor: pointer; font-size: 24px; }
.form-field { display: grid; gap: 8px; font-weight: 800; font-size: 13px; }
.form-field b { color: var(--coral); }
.form-field input { width: 100%; padding: 0 13px; }
.pdf-drop { margin-top: 18px; min-height: 185px; padding: 25px; display: grid; place-items: center; align-content: center; text-align: center; border: 2px dashed #9ec6cc; border-radius: 18px 5px 18px 5px; background: var(--mist); cursor: pointer; transition: border .18s, background .18s; }
.pdf-drop:hover { border-color: var(--teal); background: #e7f4f3; }
.pdf-drop input { position: absolute; opacity: 0; pointer-events: none; }
.pdf-drop-icon { width: 50px; height: 56px; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 6px 6px 15px 6px; font-size: 11px; font-weight: 900; margin-bottom: 10px; }
.pdf-drop small { color: var(--muted); margin-top: 5px; }

.simple-error { min-height: 100vh; display: grid; place-items: center; align-content: center; text-align: center; padding: 24px; }
.simple-error > span { color: var(--teal); font-size: 64px; font-family: "Palatino Linotype", Georgia, serif; font-weight: 900; }
.simple-error h1 { margin: 0 0 12px; }
.simple-error p { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@keyframes reveal { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
  .tracker-intro { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .tracker-header { padding: 11px 15px; }
  .tracker-brand strong { font-size: 16px; }
  .tracker-brand small { display: none; }
  .tracker-header > .tracker-primary { padding: 0 12px; }
  .tracker-main { width: calc(100% - 24px); padding-top: 22px; }
  .tracker-intro h1 { font-size: 34px; }
  .tracker-summary { grid-template-columns: repeat(2, 1fr); }
  .tracker-panel-head { align-items: stretch; flex-direction: column; padding: 20px; }
  .tracker-filters { align-items: stretch; flex-direction: column; }
  .tracker-search input { width: 100%; }
  .tracker-filters select { width: 100%; }
  .upload-dialog form { padding: 21px; }
  .upload-dialog footer { align-items: stretch; flex-direction: column-reverse; }
  .upload-dialog footer button { width: 100%; }
}

.observation-report-link {
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  color: #075966;
  background: #fff;
  border: 1px solid #a9c8ce;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.annotation-tools .observation-tool-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border-color: #96cbd0;
}
.annotation-tools .observation-tool-button span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: white;
  background: #c8463c;
  border-radius: 50% 50% 50% 8px;
  font-size: 11px;
  font-weight: 900;
}
.annotation-tools .observation-tool-button.is-active {
  color: white;
  background: #087f8c;
  border-color: #087f8c;
}
.observation-marker-layer {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}
.observation-marker {
  position: absolute;
  width: 34px;
  height: 34px;
  padding: 0;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  display: grid;
  place-items: center;
  color: white;
  background: #d4463c;
  border: 3px solid white;
  border-radius: 50% 50% 50% 7px;
  box-shadow: 0 5px 14px rgba(91, 24, 21, .38);
  font: 900 13px/1 "Trebuchet MS", sans-serif;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.observation-marker.is-dragging { cursor: grabbing; transform: translate(-50%, -50%) scale(1.08); }
.observation-marker:hover,
.observation-marker:focus-visible {
  transform: translate(-50%, -50%) scale(1.13);
  outline: 3px solid rgba(8, 127, 140, .28);
}
.observation-placement-hint {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  transform: translateX(-50%);
  padding: 10px 16px;
  color: white;
  background: #0d3e49;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(8, 35, 43, .28);
  font-size: 12px;
  font-weight: 800;
}
.observation-dialog {
  width: min(1040px, calc(100vw - 28px));
  max-height: calc(100vh - 30px);
  padding: 0;
  color: #102f3a;
  background: #f4f8f7;
  border: 0;
  border-radius: 24px 7px 24px 7px;
  box-shadow: 0 32px 90px rgba(7, 36, 44, .36);
}
.observation-dialog::backdrop {
  background: rgba(8, 31, 38, .66);
  backdrop-filter: blur(4px);
}
.observation-dialog > header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: white;
  border-bottom: 1px solid #cadde1;
}
.observation-dialog > header small {
  color: #087f8c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.observation-dialog h2 {
  margin: 2px 0 0;
  font: 700 27px/1.1 "Palatino Linotype", Georgia, serif;
}
.observation-dialog-content {
  max-height: calc(100vh - 118px);
  padding: 20px 22px 25px;
  overflow-y: auto;
}
.observation-point-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.observation-point-actions p { margin: 0; color: #64808a; }
.observation-delete {
  min-height: 34px;
  padding: 0 11px;
  color: #a6302a;
  background: #fff;
  border: 1px solid #e8b8b4;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 800;
}
.observation-create-form,
.observation-card {
  padding: 17px;
  background: white;
  border: 1px solid #cadde1;
  border-radius: 18px 5px 18px 5px;
}
.observation-create-form {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(320px, 1.25fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 17px;
  background: linear-gradient(105deg, #fff, #eaf5f4);
}
.observation-create-form label,
.observation-lift-form label,
.observation-details-form label {
  display: grid;
  gap: 6px;
  color: #486a74;
  font-size: 11px;
  font-weight: 800;
}
.observation-create-form textarea,
.observation-lift-form textarea,
.observation-details-form textarea,
.observation-create-form select,
.observation-details-form select,
.observation-create-form input[type=file],
.observation-lift-form input[type=file] {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  color: #102f3a;
  background: white;
  border: 1px solid #b8d0d5;
  border-radius: 9px;
  font: 12px/1.35 "Trebuchet MS", sans-serif;
}
.observation-create-form textarea,
.observation-lift-form textarea,
.observation-details-form textarea { min-height: 66px; resize: vertical; }
.observation-create-form textarea { min-height: 48px; height: 48px; }
.observation-details-form textarea { min-height: 44px; height: 44px; }
.observation-lift-form textarea { min-height: 54px; height: 54px; }
.observation-card + .observation-card { margin-top: 13px; }
.observation-card-head { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 13px; }
.observation-card-head h3 { margin: 0; font: 700 23px/1.2 "Palatino Linotype", Georgia, serif; }
.observation-status { padding: 5px 9px; color: #8b5806; background: #fff2d5; border-radius: 10px; font-size: 10px; font-weight: 900; }
.observation-status.is-lifted { color: #176249; background: #dff1e9; }
.observation-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.observation-photo { min-width: 0; padding: 12px; background: #f4f8f7; border-radius: 12px; }
.observation-photo > b { display: block; margin-bottom: 7px; color: #087f8c; font-size: 10px; letter-spacing: .05em; }
.observation-photo img { width: 100%; height: 245px; display: block; object-fit: contain; background: #e3ecec; border-radius: 8px; }
.observation-photo p { margin: 8px 0 0; color: #526f78; font-size: 12px; white-space: pre-wrap; }
.observation-pending-photo { height: 245px; display: grid; place-items: center; padding: 20px; text-align: center; color: #8c5a0b; background: #fff7e6; border: 1px dashed #dfbd77; border-radius: 8px; }
.observation-lift-form { display: grid; gap: 10px; }
.observation-details-form { display: grid; gap: 9px; margin-top: 10px; padding: 10px; background: #fff; border: 1px solid #d7e4e6; border-radius: 9px; }
.observation-details-form button { min-height: 40px; border: 0; }
.observation-form-hint { margin: 0!important; color: #64808a!important; font-size: 11px!important; }
.observation-upload-field {
  position: relative;
  min-width: 250px;
  display: grid;
  gap: 6px;
  color: #486a74;
  font-size: 11px;
  font-weight: 800;
}
.observation-upload-field input[type=file] {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  min-height: 0!important;
  padding: 0!important;
  opacity: 0;
  pointer-events: none;
  border: 0!important;
}
.observation-upload-actions {
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: #f5fbfb;
  border: 1px dashed #8fc1c8;
  border-radius: 9px;
}
.observation-upload-actions button {
  min-height: 30px;
  flex: 0 0 auto;
  padding: 0 10px;
  color: #086574;
  background: #e2f3f4;
  border: 1px solid #8fc1c8;
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}
.observation-upload-actions button[data-photo-source="camera"] { color: white; background: #087f8c; border-color: #087f8c; }
.observation-upload-actions small {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: #6a838b;
  font-size: 10px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.observation-create-form .observation-upload-field { min-width: 0; }
.observation-save-confirmation { padding: 7px 9px; color: #176249; background: #e5f5ee; border: 1px solid #b7decf; border-radius: 8px; font-size: 11px; font-weight: 800; text-align: center; }
.observation-lift-form .tracker-primary, .observation-create-form .tracker-primary { min-height: 42px; border: 0; }
.observation-card-footer { display: flex; justify-content: flex-end; margin-top: 12px; padding-top: 10px; border-top: 1px solid #d7e4e6; }
.observation-empty { padding: 30px; text-align: center; color: #64808a; background: white; border: 1px dashed #b7d0d5; border-radius: 14px; }
.observation-error { margin-bottom: 12px; padding: 10px 12px; color: #9b322d; background: #fff0ef; border: 1px solid #efbbb7; border-radius: 9px; }
@media (max-width: 760px) {
  .observation-report-link { display: none; }
  .observation-create-form, .observation-comparison { grid-template-columns: 1fr; }
  .observation-dialog-content { padding: 15px; }
  .observation-photo img, .observation-pending-photo { height: 210px; }

  .annotation-header {
    height: 88px;
    min-height: 88px;
    padding: 9px 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title save"
      "back save";
    gap: 5px 12px;
    align-items: center;
  }
  .annotation-header > div {
    grid-area: title;
    width: auto;
    min-width: 0;
    margin: 0;
    order: initial;
  }
  .annotation-header > div strong { font-size: 14px; }
  .annotation-header > div small { margin-bottom: 2px; font-size: 8px; }
  .annotation-header > a:first-child {
    grid-area: back;
    width: max-content;
    font-size: 11px;
  }
  .annotation-header > [data-save] {
    grid-area: save;
    min-height: 40px;
    padding: 0 14px;
  }
  .annotation-layout {
    height: calc(100vh - 88px);
    height: calc(100dvh - 88px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
  }
  .annotation-tools {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 7px 8px;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .annotation-tools::-webkit-scrollbar { display: none; }
  .annotation-tools > button {
    width: auto;
    min-width: max-content;
    min-height: 40px;
    margin: 0;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: center;
    font-size: 10px;
  }
  .annotation-tools .observation-tool-button { gap: 6px; }
  .annotation-tools .observation-tool-button span {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }
  .annotation-workspace { min-width: 0; min-height: 0; }
  .page-controls {
    height: 44px;
    flex: 0 0 44px;
    gap: 6px;
    padding: 0 8px;
  }
  .page-controls button { width: 32px; height: 30px; flex: 0 0 auto; }
  .page-controls strong, .page-controls span { font-size: 10px; white-space: nowrap; }
  .annotation-stage-wrap {
    padding: 10px 8px 24px;
    justify-content: flex-start;
    scrollbar-gutter: auto;
  }
  .observation-marker {
    width: 22px;
    height: 22px;
    border-width: 2px;
    border-radius: 50% 50% 50% 5px;
    box-shadow: 0 3px 8px rgba(91, 24, 21, .34);
    font-size: 9px;
  }
  .observation-marker:hover,
  .observation-marker:focus-visible { outline-width: 2px; }
}
