/* Mission drawer + celebration overlay + mission markers (Phase 9 §5.8).
   Calm, utilitarian — no gradients, no animation beyond Leaflet's defaults. */

.bottom-sheet--mission {
  /* Inherits the existing bottom-sheet layout; this just claims a higher z-index
     so the drawer sits above placement chrome. */
  z-index: 1300;
}

.mission-body {
  padding: 0.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mission-card {
  border: 1px solid #d2d2d2;
  border-radius: 0.5rem;
  padding: 0.75rem;
  background: #fff;
}

.mission-card--complete {
  border-color: #1f4e5f;
  background: #f0f8f6;
}

.mission-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.mission-card__meta {
  margin: 0 0 0.5rem;
  color: var(--muted-text, #555);
  font-size: 0.9rem;
}

.celebration {
  position: fixed;
  left: 50%;
  bottom: 4.5rem;
  transform: translateX(-50%);
  z-index: 2000;
  background: #fff;
  border: 1px solid #1f4e5f;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  max-width: 22rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 1rem;
}

.celebration button.chrome-btn {
  margin-top: 0.5rem;
}

/* Map marker — circle outline, distinct from existing marker styles. The
   "complete" variant uses a softer fill. */
.leaflet-interactive.mission-marker {
  stroke-dasharray: 4 3;
}

.leaflet-interactive.mission-marker--complete {
  stroke-dasharray: 0;
  opacity: 0.6;
}

.points-entries {
  list-style: none;
  padding-left: 0;
  margin: 0.25rem 0 0;
}

.points-entries li {
  padding: 0.2rem 0;
  border-bottom: 1px solid #ececec;
  font-size: 0.95rem;
}

.mission-locations {
  list-style: disc;
  padding-left: 1.25rem;
}
