diff --git a/main.css b/main.css
index 3bf62c6f94fbac462a79a8c0c504846a853ab918..7a362dc3a4d5b8c89bac9fbe9a37be89c04f582d 100644
--- a/main.css
+++ b/main.css
@@ -4,7 +4,7 @@ body {
     padding: 0;
     background-color: #f0f0f0; /* Fondo gris claro */
     overflow-y: auto;
-    max-height: 80vh;
+    max-height: 100vh;
 }
 .tabs {
     display: flex;
diff --git a/xg.js b/xg.js
index da4a198fb659a30fd50dc8475882dc38830b13b4..93e2a6c265c01e8f19061ce0468ec6c74b35680c 100644
--- a/xg.js
+++ b/xg.js
@@ -4,7 +4,7 @@
     
     let margin = {top: 20, right: 30, bottom: 50, left: 150}; // Ajustamos los márgenes para espacio en el eje Y
     let width = 800 - margin.left - margin.right;
-    let height = 370 - margin.top - margin.bottom;
+    let height = 400 - margin.top - margin.bottom;
     
     let x = d3.scaleLinear().range([0, width]);
     let y = d3.scaleBand().range([0, height]).padding(0.1);
diff --git a/xg2.js b/xg2.js
index e87afdd7caaf03b3fb9bfc1511680cdd53c3dea5..e09086554e9295e33726b52ae5bd1e57c93277ce 100644
--- a/xg2.js
+++ b/xg2.js
@@ -3,7 +3,7 @@
     
     let margin = {top: 20, right: 30, bottom: 50, left: 150}; // Ajustamos los márgenes para espacio en el eje Y
     let width = 800 - margin.left - margin.right;
-    let height = 370 - margin.top - margin.bottom;
+    let height = 400 - margin.top - margin.bottom;
     
     let x = d3.scaleLinear().range([0, width]);
     let y = d3.scaleBand().range([0, height]).padding(0.1);