.noxera-dashboard{

max-width:1000px;

margin:auto;

padding:30px;

}



.profile{

display:flex;

align-items:center;

gap:20px;

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 10px 30px #ddd;

}



.avatar{

width:80px;

height:80px;

border-radius:50%;

background:#005dfe;

color:white;

display:flex;

align-items:center;

justify-content:center;

font-size:35px;

}



.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-top:30px;

}



.cards div{

background:white;

padding:30px;

border-radius:20px;

box-shadow:0 5px 20px #ddd;

}



@media(max-width:700px){

.cards{

grid-template-columns:1fr;

}

}
.noxera-role{

    display:inline-block;

    margin-top:10px;

    padding:6px 15px;

    border-radius:20px;

    background:#ae0afe;

    color:white;

    font-size:14px;

}


.noxera-dashboard-card h3{

    margin-top:0;

    color:#005dfe;

}


.noxera-dashboard-card{

    transition:0.3s;

}


.noxera-dashboard-card:hover{

    transform:translateY(-5px);

}
.noxera-topbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:white;

    padding:20px 30px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}



.noxera-profile{

    display:flex;
    align-items:center;
    gap:15px;

}



.noxera-avatar{

    width:60px;
    height:60px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #005dfe,
        #ae0afe
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

}



.noxera-profile-text h3{

    margin:0;

}



.noxera-profile-text p{

    margin:5px 0;

    color:#666;

}



.noxera-actions{

    display:flex;

    align-items:center;

    gap:20px;

}



.noxera-actions a{

    font-size:30px;

    text-decoration:none;

}



.noxera-menu-btn{

    display:none;

    border:none;

    background:none;

    font-size:30px;

}



@media(max-width:700px){


.noxera-topbar{

    padding:15px;

}



.noxera-profile-text p{

    display:none;

}



.noxera-menu-btn{

    display:block;

}


}