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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    margin: 0;
    padding: 0;
}

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

/* Panneau d'infos au-dessus de la carte */
#info-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 400px;
}

#info-panel h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.stat-label {
    font-size: 11px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 20px;
    font-weight: bold;
}

.status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 10px;
}

.status.connected {
    background: #10b981;
}

.status.disconnected {
    background: #ef4444;
}

