body {
    /*font-family: "Georgia", serif;*/
    display: flex;
    flex-direction: column;
    height: 100vh; /* Altura total de la ventana */
   /*  background-color: #fdf6f0; */
    color: #333;
}

.container {
    display: flex;
    flex: 1 1 auto; /* El contenedor ocupa todo el espacio restante */
    height: calc(100vh - 60px); /* Resta la altura del header */
    overflow: hidden; /* Previene desbordamiento general */
}

.viewer {
    flex: 1; 
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 20px; 
    height: 340%;
    width: 100%;
}

iframe {
    width: 200%;
    height: 100%; /* Sigue ocupando toda la altura del contenedor ajustado */
    border: none;
}

#content {
    width: 100%; /* Asegura que el contenido XML ocupe todo el ancho */
    line-height: 1.6;
    word-wrap: break-word; /* Evita que el texto largo desborde */
}

.pdf-container {
    display: flex;
    gap: 20px; /* Espacio entre los PDFs */
    width: 100%;
    height: 100%; /* Ocupa todo el espacio disponible */
}

.pdf-container iframe {
    width: 100%;
    height: 100%; 
    border: none;
}
