#info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
}
#style-selector-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}
.info-box {
   
    padding: 10px;
    margin-left: 5px;
 
    color: white; /* Establece el color del texto a blanco */
    font-family: Arial, sans-serif; /* Establece la fuente a Arial*/
    align-items: center;
    font-size: 20px;
}
#velocity {
background-image: url('../../imagenes/velocity.png');
background-size: 200px 130px;
width: 190px;
height: 130px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background-repeat: no-repeat;
}
#altitude {
background-image: url('../../imagenes/altitude.png');
background-size: 200px 130px;
width: 190px;
height: 130px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background-repeat: no-repeat;
}

.rounded-rect {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 50px -25px black;
    }
     
    .flex-center {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    }
     
    .flex-center.left {
    left: 0px;
    }
     
    .flex-center.right {
    right: 0px;
    }
     
    .sidebar-content {
    position: absolute;
    width: 95%;
    height: 95%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    color: gray;
    }
     
    .sidebar-toggle {
    position: absolute;
    width: 1.3em;
    height: 1.3em;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    }
     
    .sidebar-toggle.left {
    right: -1.5em;
    }
     
    .sidebar-toggle.right {
    left: -1.5em;
    }
     
    .sidebar-toggle:hover {
    color: #0aa1cf;
    cursor: pointer;
    }
     
    .sidebar {
    transition: transform 1s;
    z-index: 1;
    width: 300px;
    height: 100%;
    }
     
    /*
    The sidebar styling has them "expanded" by default, we use CSS transforms to push them offscreen
    The toggleSidebar() function removes this class from the element in order to expand it.
    */
    .left.collapsed {
    transform: translateX(-295px);
    }
     
    .right.collapsed {
    transform: translateX(295px);
    }