.view-all-info-overlay {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 22px;
  background: rgba(3, 48, 35, 0.56);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.landmark-count {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.view-all-info-dialog {
  width: min(100%, 360px);
  box-sizing: border-box;
  padding: 26px 22px 20px;
  border: 1px solid rgba(0, 170, 108, 0.2);
  border-radius: 20px;
  background: #fff;
  color: #123d31;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 60, 42, 0.28);
  animation: view-all-info-enter 0.2s ease-out;
}

.view-all-info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2ad49b, #00a66a);
  color: #fff;
  font: 800 27px/48px Georgia, serif;
  box-shadow: 0 8px 18px rgba(0, 166, 106, 0.24);
}

.view-all-info-dialog h2 {
  margin: 0;
  color: #075c41;
  font-size: 20px;
  line-height: 1.4;
}

.view-all-info-dialog p {
  margin: 13px 0 22px;
  color: #45685d;
  font-size: 15px;
  line-height: 1.75;
}

.view-all-info-confirm {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #20ce93, #00a66a);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 166, 106, 0.2);
}

@keyframes view-all-info-enter {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .view-all-info-dialog { animation: none; }
}
