.entity-manager{

    max-width:1400px;
    margin:auto;
    padding:2rem;

}

.entity-layout{

    display:flex;
    gap:2rem;
    align-items:flex-start;

}

.entity-sidebar{

    width:320px;
    flex-shrink:0;

}

.entity-sidebar ul{

    list-style:none;
    margin:0;
    padding:0;

}

.concept-sidebar li{

    margin-bottom:.5rem;

}

.entity-sidebar a{

    text-decoration:none;

}

.entity-content{

    flex:1;

}

.entity-content form{

    display:flex;
    flex-direction:column;
    gap:1rem;

}

.entity-content label{

    display:flex;
    flex-direction:column;
    gap:.5rem;
    font-weight:600;

}

.entity-content input,
.entity-content textarea,
.entity-content select{

    padding:.6rem;
    font:inherit;

}

.entity-content button{

    width:fit-content;
    padding:.7rem 1.2rem;

}

.success{

    background:#eaf7ea;
    color:#206020;
    padding:1rem;
    margin-bottom:1rem;

}

.error{

    background:#ffeaea;
    color:#8b0000;
    padding:1rem;
    margin-bottom:1rem;

}