body{
    margin: 0px;
    padding: 0px;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    box-sizing: border-box;
}
#contenedor{
    display:block;
    margin: 0 auto;
    padding: 0px;
    background-color: rgb(255, 255, 255);
    width:800px;
    height: auto;
}
.rv{
    background-color: #ffffff;
    width:800px;
    margin: 0 auto;
    padding:0px;
    margin-top:0px;
    color: rgb(0, 0, 0);
    height: 10px;
}
.fasciculo{
    background-color: #ffcc00;
    width:800px;
    margin: 0 auto;
    padding:0px;
    margin-top:0px;
    color: rgb(0, 0, 0);
    font-family:Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 13px;
}
.linea{
    background-color: #ffffff;
    width:645px;
    height:10px;
    padding:0px;
    float: left;
    color: rgb(0, 0, 0);
    font-family:Arial, Helvetica, sans-serif;
    text-align: right;
    font-size: 8pt;
    border-bottom: 1px solid black;
}
.nombre_revista{
    background-color: #ffffff;
    width:155px;
    padding:0px;
    float: right;
    color: rgb(0, 0, 0);
    font-family:Arial, Helvetica, sans-serif;
    text-align: right;
    font-size: 13px;
}
.fechas{
    display: inline-block;
    background-color: rgb(255, 255, 255);
    width:800px;
    margin: 0 auto;
    padding:0px;
    padding-bottom: 50px;
    padding-top: 40px;
    color: rgb(0, 0, 0);
    font-family:Arial, Helvetica, sans-serif;
    text-align: right;
    font-size: 12px;
}
.titulo_autores{
    background-color: rgb(255, 255, 255);
    width:570px;
    margin: 0 auto;
    padding:0px;
    color: rgb(0, 0, 0);
    font-family:'Times New Roman', Times, serif;
    text-align: center;
    font-size: 16px;
}
.citar{
    background-color: rgb(247, 246, 246);
    width:750px;
    margin: 0 auto;
    padding-top:10px;
    padding-bottom:10px;
    color: rgb(0, 0, 0);
    font-family:'Times New Roman', Times, serif;
    text-align: center;
    font-size: 12px;
    border-radius: 12px;
    border-bottom: 1px solid rgb(126, 126, 126);
    border-top: 1px solid rgb(126, 126, 126);
}
.licencia{
    width:750px;
    margin: 0 auto;
    padding-top:10px;
    padding-bottom:10px;
    color: rgb(0, 0, 0);
    font-family:'Times New Roman', Times, serif;
    text-align: center;
    font-size: 0;
    border-radius: 12px;
    border-bottom: 1px solid rgb(126, 126, 126);
}
.desarrollo_articulo{
    background-color: rgb(255, 255, 255);
    width:750px;
    margin: 0 auto;
    padding:0px;
    color: rgb(0, 0, 0);
    font-family:'Times New Roman', Times, serif;
    text-align: justify;
    font-size: 16px;
}
.Jerarquia1{
    text-align: center; 
    font-weight: bold; 
}
.Jerarquia2{  
    font-weight: bold;
}
.Jerarquia3{ 
    font-style: italic;
}
.titulo_figura{
    text-align: center;
    font-style: italic;
}
.nota_tabla{
    text-align: center;
    font-size: 12px;
}
.figure20{
    display: block;
    margin: auto;
}
.figure40{
    display: block;
    margin: auto;
}
.figure60{
    display: block;
    margin: auto;
}
.figure80{
    display: block;
    margin: auto;
}
.figure100{
    display: block;
    margin: auto;
}

.titulo_tabla{
    text-align: center;
    font-style: italic;
    text-decoration: underline;

}
table{
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    border-collapse: collapse;
    border:1px solid black;
    margin: 0 auto;
}
th, td {
    border:1px solid black;
    padding: 2px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
}
th {
    border:1px solid black;
}
tr:first-child th {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
tr:last-child td {
    border-bottom: 1px solid black;
}

.pie{
    background-color: #afafaf;
    width:800px;
    margin: 0 auto;
    padding:0px;
    margin-top:0px;
    color: rgb(0, 0, 0);
    font-family:Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 13px;
    font-weight: bold; 
}


/* Estilo del tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: bold; 
}

.tooltip-text {
    font-style: italic;
    font-weight: normal;
    visibility: hidden;
    width: 350px;
    background-color: #ffcc00;
    color: #000000;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Mostrar el tooltip cuando se pasa el ratón sobre él */
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 600px) {
    body {
        margin: 0 auto;
        padding: 5%;
        width: 100%;
    }
    /* Otros estilos específicos para pantallas más pequeñas */
    #contenedor{
        width:100%;
    }
    .rv{
        background-color: #ffffff;
        width:100%;
    }
    .fasciculo{
        background-color: #ffcc00;
        width:100%;
        font-size: 12px;
    }
    .linea{
        background-color: #ffffff;
        width:65%;
        height:10px;
    }
    .nombre_revista{
        width:35%;
        font-size: 10px;
    }
    .fechas{
        width:100%;
        font-size: 12px;
    }
    .titulo_autores{
        width:95%;
        font-size: 16px;
    }
    .desarrollo_articulo{
        width:98%;
        font-size: 16px;
    }
    .citar{
        width:98%;
    }
    .licencia{
        width:98%; 
    }
    .Jerarquia1{
        text-align: center; 
        font-weight: bold; 
    }
    .titulo_figura{
        text-align: center;
        font-style: italic;
    }
    .figure{
        display: block;
        margin: auto;
    }
    
    .pie{
        width:100%;
        font-size: 13px;
    }
    .figure20{
        width: 20%;
    }
    .figure40{
        width: 40%;
    }
    .figure60{
        width: 60%;
    }
    .figure80{
        width: 80%;
    }
    .figure100{
        width: 100%;
    }
    table{
        width: 100%;
    }
}