.body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fcf6f3;
}

.page {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.loginPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.login {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8d6cd;
    background-color: #fbf7f6;
    min-width: 300px;
    width: 300px;
    max-width: 300px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.loginbrand {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 20px;
}

.loginLogo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.loginBrandName {
    font-size: 31px;
    font-weight: 200;
    max-width: 200px;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.title {
    font-size: 24px;
    margin: 10px 20px;
    color: #755e4a;
}

.cntl {
    display: flex;
    flex-direction: column;
    margin: 10px 20px;
}

.label {
    margin: 0px 10px;
    font-size: 10pt;
    color: #8c6b4e;
}

.textbox {
    padding: 10px 10px;
    border: 1px solid #eaeaea;
    background-color: #fafafa;
    outline: none;
}

.textbox:focus {
    border-bottom: 1px solid #755e4a;
}

.button {
    margin: auto 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    background-color: #8b7a6b;
    color: #fafafa;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}

.button:first-child {
    margin-left: 0px;
}

.button:last-child {
    margin-right: 0px;
}

.button:disabled {
    background-color: #eaeaea;
    color: #a0a0a0;
    cursor: not-allowed;
}

.button:hover {
    background-color: #8f7660;
    color: #ffffff;
}

.button:disabled:hover {
    background-color: #eaeaea;
    color: #a0a0a0;
}

.button:active {
    background-color: #a59281;
    color: #eaeaea;
}

.buttonSecondary {
    background-color: transparent;
    border: 1px solid #8b7a6b;
    color: #8b7a6b;
}

.buttonSecondary:hover {
    background-color: #f3efeb;
    color: #67594e;
}

.buttonSecondary:active {
    background-color: #e5ded8;
    color: #ab9078;
}

.buttonSecondary:disabled {
    border-color: #eaeaea;
    color: #a0a0a0;
}

.message {
    text-align: center;
    margin: 0px 10px 20px 10px;
    font-size: 12px;
}

.messageError::before {
    content: "\26A0";
    margin-right: 10px;
    font-size: 20pt;
}

.messageError {
    color: red;
}

.modalBG {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.errorPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.errorView {
    display: flex;
    flex-direction: column;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    min-width: 300px;
    width: 300px;
    max-width: 300px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.errorTitleView {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 20px 0 20px;
}

.errorIcon::before {
    content: "\26A0";
    margin-right: 10px;
    font-size: 18pt;
}

.errorTitle {
    font-size: 18px;
    margin: 10px 0px 5px 0px;
}

.errorMessage {
    font-size: 14px;
    margin: 0px 20px 20px 20px;
}

.errorActionsView {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin: 10px;
}

.pageHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    max-height: 50px;
    background-color: #3b3b3b;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.headerLeft {
    margin: 10px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.headerLogo {
    height: 60px;
}

.headerLogoImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.headerTitle {
    color: #fafafa;
    white-space: nowrap;
    margin: auto 10px;
    font-size: 19px;
    font-weight: 200;
}

.headerCenter {
    margin: 10px 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.headerSearchBar {
    width: 100%;
    max-width: 500px;
    height: 30px;
    background-color: #4a4a49;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.headerSearchInput {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 15px;
    background-color: transparent;
    color: #d0d0d0;
    font-size: 14px;
    outline: none;
}

.headerSearchInput:focus {
    color: #ffffff;
}

.headerSearchInput::selection {
    background-color: #ababab;
    color: #4a4a4a;
}

.headerSearchInputSearching {
    font-style: italic;
    background: transparent;
    user-select: none;
}

.headerSearchIcon {
    color: #d0d0d0;
    transform: rotateY(180deg);
    font-size: 20pt;
    margin-top: -7px;
    cursor: pointer;
    user-select: none;
}

.headerSearchIconSelected {
    color: #ffffff;
}

.headerRight {
    margin: 10px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.headerUserNotificationIcon {
    height: 30px;
    color: #cecece;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    margin-right: 10px;
    display: flex;
    user-select: none;
}

.headerUserNotificationIcon:hover {
    color: #ffffff;
}

.headerUserNotificationIcon:active {
    color: #aaaaaa;
}

.headerUserNotificationIconCounter {
    color: #ffffff;
    position: relative;
    font-size: 8pt;
    background-color: #ff0000;
    margin: 0 0 0 -7px;
    padding: 0px 4px;
    line-height: 1.2;
    height: 13px;
    border-radius: 10px;
}

.headerUserInfoIcon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #626262;
    background-color: #4a4a49;
    color: #cecece;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.userProfileModalBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
}

.userProfileView {
    position: absolute;
    width: 220px;
    top: 50px;
    right: 20px;
    background-color: #fbf6f2;
    border-radius: 3px;
    border: 1px solid #e3dcd6;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.userProfileViewIcon {
    margin: 30px auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5e7d8;
    border: 1px solid #bd7474;
    font-size: 28pt;
    font-weight: 200;
    color: #9a6a46;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    user-select: none;
}

.userProfileViewLine {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fafafa;
    border-top: 1px solid #e3dcd6;
}

.userProfileViewLineLabel {
    margin: 10px 20px 0px 20px;
    font-size: 8pt;
    font-weight: 600;
    text-transform: uppercase;
    user-select: none;
}

.userProfileViewName {
    font-size: 18px;
    font-weight: 500;
    margin: 0px 20px 10px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.userProfileViewEmail {
    font-size: 14px;
    margin: 0px 20px 10px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.userProfileViewActionLine {
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 100%;
    border-top: 1px solid #e3dcd6;
    background: #e3dcd6;
}

.userProfileViewButton {
    margin: 10px;
    padding: 7px 16px;
    user-select: none;
}

.pageContent {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    max-height: calc(100% - 50px);
}

.notificationsView {
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    height: 100%;
    max-height: calc(100% - 50px);
}

.notificationsViewHeader {
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.notificationsViewHeaderTitle {
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
}

.notificationsViewHeaderRight {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.notificationsViewLink {
    margin: 0 5px;
    font-size: 20px;
    line-height: 0.8;
    color: #444444;
    cursor: pointer;
    user-select: none;
}

.notificationsViewLink:last-child {
    margin-right: 0;
}

.notificationsViewLink:hover {
    color: #000000;
}

.notificationListView {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    max-height: calc(100% - 50px);
    overflow: auto;
    scrollbar-width: thin; /* Options: auto, thin, none */
    scrollbar-color: #888 #eee; /* Thumb color and track color */
}

.notificationItem {
    margin: 10px;
    max-width: 600px;
    border:1px solid #e0e0e0;
    border-radius: 3px;
    background-color: #fafafa;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.notificationItemText {
    margin: 20px 20px 10px 20px;
    font-size: 14px;
}

.notificationItemTextUnread {
    font-weight: 500;
}

.notificationItemDate {
    margin: 0px 20px 10px 20px;
    font-size: 10px;
    color: #888888;
    margin-top: 5px;
}

.searchResultsView {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.searchResultsListView {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: calc(100% - 50px);
    max-width: 600px;
    width: 600px;
}

.searchResultsHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.searchResultsListTitle {
    font-size: 16px;
    font-weight: 500;
}

.searchResultsHeaderCloseIcon {
    width: 40px;
    height: 40px;
    font-size: 26px;
    cursor: pointer;
}

.searchResultsListTitleNoResults {
    font-style: italic;
    font-weight: 200;
    color: #444444;
}

.searchResultListItems {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: calc(100% - 50px);
    overflow: auto;
    scrollbar-width: thin; /* Options: auto, thin, none */
    scrollbar-color: #888 #eee; /* Thumb color and track color */
}

.searchResultItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 4px 20px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    background-color: #fafafa;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    cursor: pointer;
}

.searchResultItemIcon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.searchResultItemCol2 {
    display: flex;
    flex-direction: column;
}

.searchItemResultTitle {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.searchItemResultSubtitle {
    font-size: 12px;
    color: #666666;
}

.dashboardView {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px;
}

.dashboardTitle {
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
}

.dashboardContent {
    display: flex;
    align-items: flex-start;
} 

.dashboardMessage {
    font-size: 18px;
    color: #555555;
}

.dashboardMetricView {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
    background-color: #fafafa;
    width: 150px;
    height: 100px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.dashboardMetricItem0 {
    font-size: 40pt;
    font-weight: 100;
}

.dashboardMetricItem1 {
    font-size: 10pt;
    font-weight: 600;
    text-transform: uppercase;
}

.dashboardMetricItem2 {
    font-size: 10pt;
    font-weight: 300;
    text-transform: uppercase;
}

.orgView {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
    margin: 20px;
}

.orgViewHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.orgViewHeaderIcon {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    user-select: none;
}

.orgViewHeaderTitle {
    font-size: 24px;
    color: #333333;
    width: 100%;
    margin: auto 19px;
}

.orgViewHeaderIcons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.orgViewHeaderIcon {
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #555555;
    margin-left: 10px;
    cursor: pointer;
    user-select: none;
}

.orgviewContent {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    max-height: 100%;
    height: calc(100% - 20px);
    overflow: auto;
    scrollbar-width: thin; /* Options: auto, thin, none */
    scrollbar-color: #888 #eee; /* Thumb color and track color */
}

.orgviewContentColumn {
    display: flex;
    flex-direction: column;
    margin: 0 33px;
    width: 250px;
}

.orgviewContentColumn:first-child {
    margin-left: 10px;
}

.orgviewContentColumn:last-child {
    margin-right: 10px;
}

.orgviewContentItem {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.orgviewContentActions {
    display: flex;
    flex-direction: row;
    margin-left: auto;
}

.userView {
    display: flex;
    flex-direction: column;
    width: calc(100% - 40px);
    margin: 20px;
}

.userViewHeader {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.userViewHeaderIcon {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    user-select: none;
}

.userViewHeaderTitle {
    font-size: 24px;
    color: #333333;
    width: 100%;
    margin: auto 19px;
}

.userViewHeaderIcons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.userViewHeaderIcon {
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: #555555;
    margin-left: 10px;
    cursor: pointer;
    user-select: none;
}

.userviewContent {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    max-height: 100%;
    height: calc(100% - 20px);
    overflow: auto;
    scrollbar-width: thin; /* Options: auto, thin, none */
    scrollbar-color: #888 #eee; /* Thumb color and track color */
}

.userviewContentColumn {
    display: flex;
    flex-direction: column;
    margin: 0 33px;
    width: 250px;
}

.userviewContentColumn:first-child {
    margin-left: 10px;
}

.userviewContentColumn:last-child {
    margin-right: 10px;
}

.userviewContentItem {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.userviewActions {
    display: flex;
    flex-direction: row;
    margin-left: auto;
}

.labelInput {
    width: 100%;
}

.dropdown {
    width: 100%;
}

.pageFooter {
    display: flex;
    flex-direction: row;
    height: 20px;
    max-height: 20px;
}
