html, body{
    margin: 0 auto;
    padding:0;
    height:100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;

}
.full-dashboard-container{
    display: grid;
    grid-template-columns: 1fr 5fr;
    height: 100vh;
    width:100%;

}

.lateral-dashboard-container{
    background-color: #081529;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
    height:100vh;
    width: 100%;
}
.first-menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex-grow: 1;
    width: 100%;
}



.lateral-dashboard-container a{
    /* border-top: 1.6px solid rgba(255, 255, 255, 0.349);
    border-bottom: 1.6px solid rgba(255, 255, 255, 0.349); */
    border: 1.6px solid rgba(255, 255, 255, 0.349); 
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgb(177, 177, 177);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    font-weight:bold;
}

.lateral-dashboard-container a:hover{
    background-color: #fcf7e9;
    /* color: black; */
    /* height:80px; */
    /* width: 100%; */
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    color: #31291a;
}

.lateral-dashboard-container a:hover div{
    color: #31291a;
}
.clicked{
    background-color: #fcf7e9;
    font-weight: 900;
}
.clicked div{
    color: #041f49;
    
}

.main-container{
    height:100vh;
    width: 100%;
    background-color: #faf3dda2;
    /* background-color: #f1f5fa; */
    overflow-y: auto;
    position:relative;
    box-sizing: border-box;
    overflow:hidden;
    padding:20px;
    padding-top:100px;

}

.last-menu{
    margin-top:auto;
    border-bottom: none;
    display:flex;
    flex-direction:row;
    gap: 20px;
}

.last-menu div{
    color:#e2e2e2
}
.last-menu .user-svg{
    color:white;
}

.last-menu:hover .user-svg{
    color:#041f49;
}

.nav-menu{
    height:100px;
    width: 100%;
    /* overflow: hidden; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position:absolute;
    background-color: white;
    padding:30px;
    box-sizing:border-box;
    top:0;
    left:0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); 
}   

.nav-menu img{
    width:50px;
    height:auto;
    

}

.title-display{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:15px;

}

.account-display{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.titulo-sessao{
    font-family: 'Poppins', sans-serif;
    color: #041f49;
    font-size: 3em;
    font-weight: 900;
}

.username{
    font-family: 'Poppins', sans-serif;
    color:#707070;
}


.svg-diamond{
    color:#041f49;
}
.user-svg{
    color:#ffffff;
    width:50px;
    height:auto;
}

.account-display {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  background-color: transparent;
  user-select: none;
}


/* dropdown escondido inicialmente */
.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  min-width: 160px;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  z-index: 100;
}

.dropdown.show {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
}

.dropdown a:hover {
  background-color: #f0f0f0;
}

.svg-menu{
    color:#041f49;
}

@media (max-width:1024px){
    .full-dashboard-container{
        display: grid;
        grid-template-columns: 1fr 3fr;
        }
    .main-container{
        padding:0;
        padding-top:100px;
        padding-bottom:40px;
    }
    .titulo-sessao{
        font-size: 2em;
    }
    .username{
        font-size:15px;
    }
}

@media (max-width:768px){
    .username{
        display:none;
    }
}

@media (max-width: 425px) {
    .full-dashboard-container{
        display:flex;
        justify-content: center;
        align-items: center;
    }
    .lateral-dashboard-container{
        display:none;
    }
    .nav-menu{
        padding:30px;
    }
    .titulo-sessao{
        font-size: 1.3rem;
    }
    .username{
        display:none;
    }
} 