/* Zerar margens e preparar layout */
body {
    margin: 0; 
    padding: 0;
    display: flex;
    font-family: sans-serif;
}

/* Barra lateral fixa */
.barra-lateral {
    background-color: #2c5aa0;
    width: 220px;
    height: 100vh;
    position: fixed;
    padding-top: 5px;
    color: white;
    display:inline-block;
    flex-direction: column;
}

.barra-topo {
        width: 100%;
        display: inline-block;
        height: 100px; /* altura da barra */
        background-color: #545454;
        top: 10;
        z-index: 999; /* garante que fique por cima de outros elementos */
        
        
}

.barra-topo span {
    position: relative;
    top: 30px;
    left: 1500px;
    font-size: xx-large;
    text-align: center;
    font-family: 'Times New Roman', serif;
    color: white;
  }
      

/* Texto "Disciplinas" no topo da barra */
.menu-wrapper span {
    background-color: #2c5aa0;
    color: white;
    padding:0px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    display: block;
    
}

/* Navegação (menu) */
#menu {
    margin-top: 20px;
}

#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu a {
    display: flex;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    color: white;
    border-top: 1px solid gray;
    transition: background-color 0.3s;
}

#menu a:hover {
    background-color: #1e4280;
}

#menu a i.material-icons {
    margin-right: 10px;
    font-size: 20px;
}

/* Conteúdo da página, com margem para não ficar atrás da barra */
.conteudo {
    margin-left: 220px;
    padding: 20px;
}

