/* Travel map styles - no JS, simple SVG projection */
.page-content {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 16px;
}

.travel-header {
  text-align: center;
  margin-bottom: 32px;
}

.travel-header h1 {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 32px;
}

.map-wrap {
  background: linear-gradient(135deg, #dbeafe 0%, #fce7f3 100%);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: all 300ms ease;
}

.map-wrap:hover {
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
}

.plotly-embed {
  width: 100%;
  min-height: 520px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.plotly-embed > div {
  width: 100%;
  height: 100%;
}

.plotly-embed .plotly-graph-div {
  width: 100% !important;
  height: 100% !important;
  border-radius: 16px;
}

.no-markers {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #0f2c4f;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-radius: 16px;
  font-weight: 500;
}
