/* ============================================
   Map Page Styles
   ============================================ */

.map-page {
  display: flex;
  flex-direction: column;
}

.map-container {
  width: 100%;
  height: 70vh;
  min-height: 500px;
}

.map-container--mini {
  height: 400px;
  min-height: 300px;
  border-radius: 6px;
  overflow: hidden;
}

/* Day marker circles */
.day-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0ea5c0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.day-marker--start {
  background: #2196f3;
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

.day-marker--end {
  background: #f59e0b;
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
  margin: 12px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.popup-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #0c7a8f;
}

.popup-stats {
  color: #4e6270;
  font-size: 0.8rem;
}

.popup-stats span {
  display: inline-block;
  margin-right: 10px;
}

.popup-link {
  display: inline-block;
  margin-top: 6px;
  color: #0ea5c0;
  font-weight: 600;
  font-size: 0.85rem;
}

.popup-link:hover {
  text-decoration: underline;
}
