body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

#map-container {
    height: 100%;
}

.mapboxgl-popup-content{
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: 'Arial', sans-serif;
}

.legend h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.legend-label {
    font-size: 13px;
    color: #555;
}

.header {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-family: 'Arial', sans-serif;
    max-width: 400px;
}

.header h1 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.header .description {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

.header .call-to-action {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}