.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-dot {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.tab-active {
    border-bottom: 2px solid #1f2937;
    color: #1f2937;
}

.tab-inactive {
    border-bottom: 2px solid transparent;
    color: #9ca3af;
}

.tab-inactive:hover {
    color: #4b5563;
}

.content-card {
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.content-card:active {
    transform: scale(0.98);
}

.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.map-marker {
    width: 24px;
    height: 24px;
    background: #f59e0b;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #f59e0b, 0 4px 12px rgba(245, 158, 11, 0.4);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 2px #f59e0b, 0 4px 12px rgba(245, 158, 11, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3), 0 6px 20px rgba(245, 158, 11, 0.6); }
}

.map-marker.active {
    background: #ef4444;
    box-shadow: 0 0 0 2px #ef4444, 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: activePulse 1.5s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 2px #ef4444, 0 4px 12px rgba(239, 68, 68, 0.4); }
    50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.2), 0 8px 24px rgba(239, 68, 68, 0.5); }
}

#gon-map {
    height: 100%;
    width: 100%;
    border-radius: 0.75rem;
    z-index: 1;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .gon-main-container {
        height: auto !important;
        min-height: 100vh;
    }
    
    .gon-sidebar {
        max-height: 55vh;
        overflow-y: auto;
    }
    
    .gon-map-container {
        height: 45vh;
        min-height: 300px;
    }
    
    .tab-button {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .content-card {
        padding: 0.875rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.leaflet-popup-content-wrapper {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-content {
    margin: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
}

/* Touch feedback */
.touch-feedback {
    -webkit-tap-highlight-color: transparent;
}

.touch-feedback:active {
    opacity: 0.7;
}
