body{
    margin: 0;
    padding: 0;
}

#map {
    width: 100vw;
    height: 100vh;
}

.container-connect {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

#connect {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 7px;
    width: 180px;
}

#connect.connected {
    background-color: #28a745;
}


.container-sensors {
    position: absolute;
    top: 55px;
    right: 10px;
    width: 180px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    z-index: 1000;
    border-radius: 7px;
    overflow: hidden;
}

.container-sensors div {
    background-color: #ffffff;
    padding: 10px;
    font-size: 16px;
    text-align: center;
}

#value {
    font-size: 12px;
}