.outdoor-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: min(360px, calc(100vw - 24px));
  font-family: Inter, system-ui, sans-serif;
}

.outdoor-panel button,
.outdoor-nearest a {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: #0e4939;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  cursor: pointer;
  text-decoration: none;
}

.outdoor-panel button.secondary {
  background: #ffffff;
  color: #0e4939;
  border: 1px solid #d8e3dc;
}

.outdoor-nearest {
  display: none;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  color: #1f2937;
  border: 1px solid #d8e3dc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.outdoor-nearest.active {
  display: block;
}

.outdoor-nearest strong {
  display: block;
  margin-bottom: 6px;
}

.outdoor-nearest small {
  display: block;
  margin-bottom: 12px;
  color: #64748b;
}

.outdoor-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, .55);
  padding: 18px;
}

.outdoor-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.outdoor-modal-box {
  width: min(1100px, 100%);
  height: min(760px, 92vh);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
  display: flex;
  flex-direction: column;
}

.outdoor-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
}

.outdoor-modal-head h3 {
  margin: 0;
  font-size: 18px;
}

.outdoor-modal-head button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: #f1f5f9;
  cursor: pointer;
}

#outdoor-map {
  flex: 1;
  min-height: 420px;
}

@media (max-width: 700px) {
  .outdoor-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .outdoor-panel button,
  .outdoor-nearest a {
    width: 100%;
  }

  .outdoor-modal {
    padding: 8px;
  }

  .outdoor-modal-box {
    height: 94vh;
    border-radius: 14px;
  }
}
