/* ==============================================
   MAIN CSS - Import aller Module
   ============================================== */

@import url('variables.css');
@import url('layout.css');
@import url('components.css');
@import url('v4.css');

/* Leaflet CSS überschreiben */
.leaflet-container {
  font-family: inherit;
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}

.leaflet-popup-content {
  margin: var(--space-sm);
}

/* Custom Zoom Control Position */
.leaflet-bottom.leaflet-right {
  bottom: 80px;
}

/* GPS Marker - Pulsierend */
.gps-marker {
  position: relative;
  width: 24px;
  height: 24px;
}

.gps-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #3B82F6;
  border: 3px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
  z-index: 2;
}

.gps-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
