*{
    margin:0;
    padding: 0%;
    font-family: "Bebas Neue", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-wrap: hidden;

}   


/*página principal*/

body{
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto 60px;
    background-image: url(Imagenes/Fondo.jpg);
    background-size: cover;
    background-attachment: fixed;
    margin: 0%;
    padding: 0%;
    min-height: 100vh
}


/* Header que contiene img y el menu */

.logo {
    height: 100px;
    width: 100px;
    margin-bottom: 5px;
    margin-left: 20px;
    padding: 0;
}


.cabecero{
    padding-top: 0px;
    padding-left: 20px;
    display: grid; 
    grid-template-columns: 160px  auto;
    grid-template-rows: 80px;
    align-items: center;
    width: 100%;
    background-color: rgba(58, 56, 51, 0.804);
    position: fixed;
}

.menu_superior{
    display: grid;
    text-align: center;
    grid-template-columns: 120px 120px 120px 120px;
    grid-template-rows: 20px ;
    list-style: none; 
    align-items: center;
}

.menu_superior li{
    padding: 0px;
    font-size: 2cap;
    font-weight: 100;
}



.menu_superior li a{
    text-decoration: none;
    color: rgb(196, 69, 54);
    width: auto;
    height: auto;
}



/* Dashboard*/

main{
    padding-top: 100px;
    display: grid;
    grid-template-columns: auto;
}
.titulo_dashboard{
    text-align: center;
    font-size: 3cap;
    font-weight: 100;
    color: rgb(196, 69, 54);
  
}

.dashboard{
    display: grid;
    grid-template-columns: 6fr 4fr;
    grid-template-rows: 75vh ;

}


/*agenda*/

.agenda{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 40px auto;
    background-color:rgba(196, 68, 54, 0.448) ;
    border-radius: 15px;
    align-items: top;
    margin: 15px;
}


.titulo_agenda{
    text-align: center;
    color: rgba(58, 56, 51);
    font-size: larger;
    font-weight: 100;
    padding: 10px;
    text-align: center;

}
.sesion{
    background-color: aliceblue;
    border-radius: 15px;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 2px 2px 2px;
    text-align: center;

}

.eventos{
    margin-top: 20px;
    list-style: none;
    margin: 20px;
    overflow: scroll;
}

.eventos::-webkit-scrollbar{
    width: 5px;
    background-color: none;
}

.eventos::-webkit-scrollbar-thumb{
    background-color: rgba(58, 56, 51, 0.8);
    border-radius: 50px;
    transition: opacity 2s ;
}

.eventos::-webkit-scrollbar-corner{
}

.eventos::-webkit-scrollbar-thumb:focus{
    opacity: 100;
}

.eventos li{
    padding: 10px;

}

.sesion{
    display: grid;
    grid-template-columns: 1fr 2fr 4fr 4fr 2fr;
    grid-template-rows: auto;
    align-items: center;
}

.icono_profesor{
    height: 10vh;
}
.detalle_sesion{
    font-size: larger;
    
}
/*graficos*/

.graficos{
    list-style: none;
    width: 99%;
    display: grid;
    grid-template-rows: 50% 50%;
}

.graficos li{
    background-color: rgba(196, 68, 54, 0.448);
    margin: 15px;
    border-radius: 15px;
    align-items: center;    
    justify-items: center;
    overflow: hidden;
}

canvas{
}

/*footer*/

footer{
    background-color:rgb( 66, 62, 55);
    width: 100%;
    margin: 0%;
    position: bottom;
}


.piepagina{
    margin-left: 200px;
    list-style: none;
    padding-top: 10px;
}

.piepagina li a{
    color: rgb(244, 244, 246);
    text-decoration: none;
}


/*responsive*/

@media only screen and (max-width: 1000px) {
    body{
        background-size: auto;
    }

    .dashboard{
        grid-template-columns: auto;
        grid-template-rows: auto 4fr;
    }
    .agenda{
        max-height: 80dvh;
    }    


    .cabecero{
        height: 0%;
        overflow: hidden;
    }
    
    main{
        padding-top: 10px;
    }
}