
        body { background-color: #f7f7f7; font-family: 'Roboto'; }
        .window {
            font-weight: bold;
            cursor: pointer;
            border: 1px solid #346789;
            box-shadow: 2px 2px 10px #aaa;
            -o-box-shadow: 2px 2px 10px #aaa;
            -webkit-box-shadow: 2px 2px 10px #aaa;
            -moz-box-shadow: 2px 2px 10px #aaa;
            -moz-border-radius: 0.5em;
            border-radius: 0.5em;
            padding: 0.5em 1em; /* Espaciado interior */
            text-align: center;
            z-index: 20;
            position: absolute;
            background-color: #eeeeef;
            color: black;
            font-family: helvetica;
            font-size: 0.9em;
            word-wrap: break-word; /* Ajustar texto en caso de líneas largas */
            display: inline-block; /* Ajusta el tamaño al contenido */
            white-space: nowrap; /* Evita que el texto se divida en varias líneas */
        }
        
        
                .window:hover {
                    box-shadow: 2px 2px 10px #444;
                    -o-box-shadow: 2px 2px 10px #444;
                    -webkit-box-shadow: 2px 2px 10px #444;
                    -moz-box-shadow: 2px 2px 10px #444;
                    /*
                    opacity:0.6;
                    filter:alpha(opacity=60);
                    */
                }
        
                /*
                .window > div {
                    margin-top: 19%;
                    margin-bottom: 19%;
                }
                */
        
                .hidden {
                    display: none;
                }
        
                .collapser {
                    cursor: pointer;
                    border:1px dotted gray;
                    z-index:21;
                }
        
                .errorWindow {
                    border: 2px solid red;
                }
        
                #treemain {
                    position: relative;
                    width: 100%;
                    height: 800px; /* o un valor que se ajuste a tu contenido */
                    overflow: auto;
                }
                
        