#map {
    height: 100vh;
}

.leaflet-container {
    background: #111;
}

.leaflet-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(84, 66, 244, 0.2);
    /* Google blue with 20% opacity */
    pointer-events: none;
    z-index: 400;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
    color: #3b79d8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #f0f0f0;
}

@media (max-width: 768px) {
    .map-overlay {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 15px 20px;
    }
    
    .map-overlay h3 {
        font-size: 20px;
    }
    
    .map-overlay p {
        font-size: 14px;
    }
}