﻿/* @define UserGroupsEditor */
.UserGroupsEditor {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
}

.UserGroupsEditor-body {
    display: flex;
    flex: 1 1 auto;
    min-height: 1em;
    height: 100%;
}

.UserGroupsEditor-tabContent {
    padding-left: 3px;
    padding-top: 15px;
    height: 100%;
    overflow-x: hidden;
}

.UserGroupsEditor-tabPane {
    height: 100%;
}

.UserGroupsEditor-tabsBlock {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
}

/* stylelint-disable plugin/selector-bem-pattern -- these selectors violate the SUIT pattern */
.UserGroupsEditor-tabsBlock > div {
    flex-grow: 0;
}

.UserGroupsEditor-tabsBlock div.tab-content {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 100%;
}
/* stylelint-enable plugin/selector-bem-pattern */

.UserGroupsEditor-markedForDeletionBanner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 15px;
    background: #fdf2d1;
    border: 1px solid #fceec0;
    border-radius: 4px;
}

.UserGroupsEditor-markedForDeletionBannerText {
    margin-right: 15px;
    font-size: 14px;
    color: #806420;
}

.UserGroupsEditor-editorPaneHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.UserGroupsEditor-editorPaneHeaderText {
    margin: 0;
}
