::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b11226;
}

.leaflet-popup-content-wrapper {
    background: #1a1a1a !important;
    color: #f8fafc !important;
    border: 1px solid #333;
    border-radius: 6px;
}

.leaflet-popup-tip {
    background: #1a1a1a !important;
}

.leaflet-container {
    font-family: 'Inter', sans-serif;
}

.bg-grid-pattern {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.backdrop-blur-strong {
    backdrop-filter: blur(8px);
}

#ai-chat-window {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.typing-dot {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        opacity: 0.2;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-2px);
    }
}