body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

#chartContainer {
    position: absolute;
    top: 5.5%;
    left: 0;
    width: 100%;
    height: 86%;
}

#chartFrame {
    width: 100%;
    height: 100%;
    border: none;  /* Elimina el borde del iframe */
}

.year-item {
    position: absolute;
    bottom: 5%;
    color: #333333; /* Ajusta el color del texto según tu necesidad */
    font-family: 'Source Sans Pro', sans-serif;
}

#legend {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%; /* Ajusta el ancho según tus necesidades */
    text-align: center; /* Añade alineación al centro */
    color: #333333;
    font-family: 'Source Sans Pro', sans-serif;
}


.legend-item {
    margin: 0;
    display: inline-block;
    margin-right: 5px;
}

.legend-item::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 5px;
}

.egresados::before {
    background-color: #b38df0;  /* Color para la clase "egresados" */
}

.no-estudia::before {
    background-color: #bcd03c;  /* Color para la clase "no-estudia" */
}

.cft::before {
    background-color: #EB7DD9;  /* Color para la clase "estudia" */
}

.ip::before {
    background-color: #FF894B;  /* Color para la clase "titulado" */
}

.u::before {
    background-color: #6d99f3;  /* Color para la clase "titulado" */
}

.titulados::before {
    background-color: #01cf8a;  /* Color para la clase "titulado" */
}


/* Consulta de medios para estilos específicos en pantallas pequeñas */
@media (max-width: 600px) {

    #legend {
        position: absolute;
        top: 1%;
        left: 50%;
        color: black; /* Ajusta el color del texto según tu necesidad */
        font-family: 'Source Sans Pro', sans-serif;
        display: inline-flex;
        text-align: center;
        font-size: 0.7em;
    }
    .legend-item {
        margin-right: 1%; /* Ajusta el espacio para pantallas más pequeñas */
        font-size: 0.7em;
        display: inline-block;
    }

    .legend-item::before {
        content: '';
        display: inline-block;
        width: 0.5em;
        height: 0.5em;
        margin-right: 0.2em;
    }

    .year-item {
        margin-right: 1%;
        font-size: 0.8em; /* Ajusta el tamaño del texto para pantallas más pequeñas */
    }
}

#footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: fixed;
    width: 97%;
    bottom: 2%;
    left: 1%;
}
#footer p {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: #9B9B9B; /* Ajusta el color del texto según tu necesidad */
    font-size: 0.8em;
}
#footer img {
    height: 20px; /* Ajusta el tamaño de la imagen según tus necesidades */
}