.jupyter-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.report-jupyter {
    flex: 2;
    border: 2px solid #0F1633; /* Bordes de color azul */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    overflow: hidden; /* Para que el contenido del iframe no se desborde */
    background-color: #fff; /* Fondo blanco */
}

.report-jupyter iframe {
    width: 100%;
    height: 600px;
    border: none; /* Elimina el borde del iframe */
    border-radius: 8px; /* Bordes redondeados para el iframe */
}

.report-info {
    flex: 1;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Arial', sans-serif;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.report-info h3 {
    color: #0F1633;
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

.report-info p {
    color: #444;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.report-info p strong {
    color: #0F1633;
    font-weight: bold;
}

.report-info a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.report-info a:hover {
    background-color: #0056b3;
}

/* Estilos para la navegación fuera del contenedor de report-info */
.navigation {
    margin-top: 20px;
    display: flex;
    justify-content: center;  /* Centrado horizontal */
    align-items: center;
    gap: 15px;
}

.navigation a {
    font-size: 28px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navigation a:hover {
    background-color: #f0f0f0;
}

.prev-arrow {
    text-align: left;
}

.next-arrow {
    text-align: right;
}

/* Media Query para pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    .jupyter-container {
        flex-direction: column; /* Cambia de fila a columna en pantallas pequeñas */
    }

    .report-jupyter {
        width: 90%; /* Reduce el ancho del contenedor del reporte al 90% */
        margin-bottom: 20px; /* Separación con la sección de información */
        height: auto; /* Ajusta la altura para pantallas más pequeñas */
    }

    .report-info {
        width: 90%; /* Reduce el ancho del contenedor de la información al 90% */
        margin-top: 20px; /* Separación con el contenedor del reporte */
    }

    .report-info h3 {
        font-size: 16px; /* Reducir el tamaño del título */
    }

    .report-info p {
        font-size: 12px; /* Reducir el tamaño de los párrafos */
    }
}
