.headActions{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modalFormCaption{
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #232323;
    margin-bottom: 12px;
}


.modalFormDescription{
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3em;
    text-align: center;
    color: #575757;
    max-width: 460px;
    margin: 0 auto 24px auto;
}

.addMoreUsers{
    background: #e8ebf5;
    width: 100%;
    height: 42px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #575757;
}

.addMoreUsers:before{
    content: '';
    width: 24px;
    height: 24px;
    background: url("../../../assets/icons/icon-plus.svg") no-repeat center;
    margin-right: 4px;
}

.removeStudent{
    background: url("../../../assets/icons/icon-trash-red.svg") no-repeat center;
    width: 24px;
    height: 24px;
    margin-left: 20px;
}

.container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.actions {
    display: flex;
    gap: 1rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.departmentItem{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F7F8FC;
    margin-bottom: 8px;
    padding: 13px 16px;
}

.departmentItem:hover .departmentItemActionButton{
    display: block;
}

.departmentItemActionButton{
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #D1D5DB;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.departmentItemActionButton svg{
    width: 16px;
    height: 16px;
}   

.departmentItemActionButton:hover{
    color: #000;
}

.departmentItemActionButtonAlwaysShow{
    display: block;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    background-color: #91CF4F;
    border-radius: 4px;
}

.departmentItemActionButtonDisabled{
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

.departmentItemActionButtonDisabled:hover{
    color: #D1D5DB;
}

.settingsArea{
    border-radius: 20px;
    padding: 40px;
    background: #f7f8fc;
    margin-top: 12px;
}

.settingsAreaTitle{
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #232323;
    margin-bottom: 20px;
}