* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: sans-serif; }

#map { width: 100vw; height: 100vh; }

#status {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 1000;
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cluster-marker {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4a90d9; /* overridden inline per marker color */
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
