.map.large {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
}

.map.large .mapbox {
  border-radius: 0.6rem;
  height: 80vh;
  width: 80vw;
}

.locator-icon {
  --bg-color: var(--white);
  --number-color: var(--brand-primary);
  --border-color: var(--brand-primary);
}

.locator-icon.active {
  --bg-color: var(--brand-primary);
  --number-color: var(--white);
  --border-color: var(--brand-primary);
}

/* Mapbox Popup Styling */
.mapboxgl-popup {
  max-width: 360px !important;
}

.mapboxgl-popup-content {
  border-radius: 20px !important;
  padding: var(--s-sm) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mapboxgl-popup-anchor-top .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-left .mapboxgl-popup-tip,
.mapboxgl-popup-tip {
  display: none !important;
}

.venue-popup {
  padding: 0;
  font-family: var(--font-family, system-ui);
  min-width: 280px;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.popup-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  flex: 1;
  padding-right: 8px;
}

.popup-header h3 .club-link {
  color: var(--text-primary, #1a1a1a);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
  outline: none;
}

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

.popup-header h3 .club-link:focus {
  outline: none;
}

.navigation-chevrons {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.navigation-chevrons button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.navigation-chevrons button img {
  width: 14px;
  height: 14px;
  transition: opacity 0.2s ease;
}

.navigation-chevrons button:hover img {
  opacity: 0.7;
}

.navigation-chevrons button:disabled {
  cursor: not-allowed;
}

.navigation-chevrons button:disabled img {
  opacity: 0.3;
}

.activities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.activity-tag {
  background: var(--gray-100, #f5f5f5);
  color: var(--text-secondary, #666);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.venue-name {
  color: var(--text-secondary, #666);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.venue-address {
  color: var(--text-secondary, #666);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.venue-distance {
  color: var(--text-secondary, #666);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.walking-time {
  background: var(--brand-primary, #9565fe);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

/* Departure popup styling */
.departure-popup {
  text-align: center;
  font-family: var(--font-family, system-ui);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary, #1a1a1a);
}
