body { 
    font-family: 'Inter', sans-serif; 
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    overflow-x: hidden;
}

/* Map Styling Presisi */
#map { 
    height: 100%; 
    min-height: 400px;
    width: 100%; 
    z-index: 1; 
    background: #0f172a;
}

/* Glass Panel Modern */
.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
}

/* Detail Data Grid */
.data-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 2px;
}
.data-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    font-family: 'Inter', monospace;
    word-break: break-word;
}

/* Animasi Toast Modern */
.toast-enter { transform: translateY(100%); opacity: 0; }
.toast-active { transform: translateY(0); opacity: 1; }
.toast-exit { transform: translateY(100%); opacity: 0; }

/* Custom Scrollbar halus */
.custom-scroll::-webkit-scrollbar { width: 6px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; }
.custom-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.custom-scroll::-webkit-scrollbar-thumb:hover { background: #ec4899; }

/* LOADING SCREEN STYLES */
#introOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f172a;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    font-family: 'Share Tech Mono', monospace;
    transition: opacity 0.8s ease-out;
}

.progress-bar-container {
    width: 300px;
    height: 4px;
    background: #1e293b;
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: #ec4899;
    width: 0%;
    box-shadow: 0 0 10px #ec4899;
    transition: width 0.1s linear;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(236, 72, 153, 0.1), transparent);
    animation: scan 2s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Animasi tambahan */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Leaflet Controls */
.leaflet-control-layers {
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

/* Scrollbar untuk Sidebar */
#quickMenu .overflow-y-auto::-webkit-scrollbar {
    width: 4px;
}
#quickMenu .overflow-y-auto::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}