/* Specifični stilovi za digitalno dostojanstvo i interaktivni prozor */

#map { 
    height: 100%; 
    width: 100%; 
    z-index: 1; 
    background: #020617; 
}

/* Custom Scrollbar za overlay */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #020617;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

/* Tooltip stilovi */
.custom-tooltip {
    background: #0f172a !important;
    border: 1px solid #1e293b !important;
    color: #f1f5f9 !important;
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    font-weight: bold !important;
    padding: 6px 12px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.7) !important;
}

.custom-tooltip:before {
    border-top-color: #0f172a !important;
}

/* Video container ratio */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Timeline stilovi unutar overlay-a */
.timeline-item::before { 
    content: ''; 
    position: absolute; 
    left: -4px; 
    top: 6px; 
    width: 8px; 
    height: 8px; 
    background: #d97706; /* Amber-600 */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.4);
}

/* Animacija sadržaja */
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.animate-in {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Uklanjanje Leaflet kontrola za maksimalni minimalizam */
.leaflet-control-zoom {
    display: none !important;
}

.leaflet-control-attribution {
    display: none !important;
}

/* Location Overlay transition */
#location-overlay {
    will-change: transform, opacity;
}