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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* Painel de informações */
#info-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 220px;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

#info-panel h2 {
    font-size: 18px;
    margin: 0;
    color: #00d4ff;
}

#info-panel #status {
    font-size: 14px;
    color: #aaa;
    margin-top: 8px;
}

#info-panel #vehicle-count {
    font-size: 15px;
    margin-top: 5px;
}

#info-panel #count {
    color: #00ff88;
    font-weight: bold;
}

/* Legenda de veículos */
#legend {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 18px;
    border-radius: 10px;
    color: white;
    font-size: 13px;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Estilo para o rodapé com a logo */
#footer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s;
}

#footer:hover {
    opacity: 1;
}

#footer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

