html,body{margin:0;height:100%;background:#0b0f14;font-family:Arial;}
#network{width:100%;height:100%;}
#search{position:absolute;top:10px;left:10px;z-index:10;padding:8px;width:250px;background:#1a2430;color:#fff;border:none;}

#resultados{
    position:absolute;
    top:45px;
    left:10px;
    width:250px;
    max-height:300px;
    overflow-y:auto;
    background:#1a2430;
    color:#fff;
    z-index:9999;
    border-radius:5px;
}

.resultado{
    padding:8px;
    cursor:pointer;
    border-bottom:1px solid #333;
}

.resultado:hover{
    background:#2a3645;
}

#painelGraus{
    position:absolute;
    top:10px;
    right:10px;
    width:280px;
    z-index:10;
    background:#1a2430;
    color:#fff;
    padding:12px;
    border-radius:8px;
    box-sizing:border-box;
}

#painelGraus h3{
    margin:0 0 10px 0;
    font-size:15px;
}

#painelGraus input{
    width:100%;
    box-sizing:border-box;
    padding:8px;
    margin-bottom:4px;
    background:#0b0f14;
    color:#fff;
    border:1px solid #333;
    border-radius:4px;
}

.resultados-busca{
    max-height:150px;
    overflow-y:auto;
    margin-bottom:8px;
    border-radius:4px;
}

.resultados-busca .resultado{
    background:#0b0f14;
}

#btnCalcular{
    width:100%;
    padding:8px;
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:4px;
    cursor:pointer;
    margin-bottom:10px;
}

#btnCalcular:disabled{
    background:#334155;
    cursor:not-allowed;
}

#btnLimparCaminho{
    width:100%;
    padding:8px;
    background:#334155;
    color:#fff;
    border:none;
    border-radius:4px;
    cursor:pointer;
    margin-bottom:10px;
}

#btnLimparCaminho:hover{
    background:#475569;
}

#resultadoCaminho{
    font-size:13px;
    line-height:1.5;
}

#resultadoCaminho .passo{
    display:block;
}

#resultadoCaminho .seta{
    color:#94a3b8;
    display:block;
    padding-left:8px;
    font-size:12px;
}

#resultadoCaminho .graus{
    margin-top:8px;
    font-weight:bold;
    color:#4ade80;
}

#versao{
    position:absolute;
    bottom:10px;
    right:10px;
    z-index:10;
    color:#64748b;
    font-size:12px;
    font-family:Arial;
}