/* Ana Kök Konteyner Yapısı */
#polarsteps-tracker-root {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

#tracker-global-loader {
    text-align: center;
    padding: 40px;
    color: #666;
    font-weight: 500;
}

/* Animasyonlar */
@keyframes livePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes markerPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* Harita ve Kontroller */
.leaflet-fullscreen-mode {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
}

.leaflet-control-fullscreen-btn { 
    background: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.3);
    color: #333;
}

.leaflet-control-fullscreen-btn:hover {
    background: #f4f4f4;
    color: #000;
}

.leaflet-control-fullscreen-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Yazı Gizleme / Gösterme Dinamikleri */
.ps-more-text {
    display: none;
}

.ps-trigger-span {
    color: #dc2626;
    cursor: pointer;
    font-weight: bold;
    margin-left: 4px;
    display: inline-block;
    font-size: 11px;
}

.ps-trigger-span:hover {
    text-decoration: underline;
}

.ps-map-icon-img {
    width: 14px;
    height: 14px;
    display: block;
    filter: brightness(0);
}

.ps-map-icon-img-white {
    width: 14px;
    height: 14px;
    display: block;
    filter: brightness(0) invert(1);
}
/* Sosyal Medya İkonları Yan Yana Hizalama */
.header-socials {
    display: flex;
    align-items: center; /* Tüm ikonları ve pini dikeyde ortalar */
    gap: 12px;           /* İkonlar arası boşluk */
}

.header-socials a[title="Polarsteps"] {
    display: inline-flex;
    align-items: center;
    position: relative;
}

/* Yan Yana Aynı Hizada Duracak Canlı Pin Konteyneri */
.nav-live-pin-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 10px;
    height: 10px;
    margin-left: 6px; /* Polarsteps ikonu ile pin arasındaki mesafe */
}

.nav-live-pin {
    width: 8px;
    height: 8px;
    background-color: #dc2626;
    border-radius: 50%;
    position: absolute;
    z-index: 12;
}

.nav-live-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #dc2626;
    border-radius: 50%;
    animation: markerPulse 1.5s infinite;
    z-index: 11;
    opacity: 0.8;
}