/* Advanced Map Link Styling */
.advanced-map-link {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 1rem;
  box-shadow:  0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.advanced-map-link:hover {
  background-color: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.advanced-map-link i {
  font-size: 1rem;
  color: #48494B;
}

.advanced-map-link .text {
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .advanced-map-link {
    font-size: 0.75rem;
  }
  
  .advanced-map-link i {
    font-size: 1rem;
  }
}
