.actionHeader {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 24px;
  }
  .actionBar {
    display: flex;
    flex-direction: column;
    gap: 24px;

    .actionBarButtons {
      display: flex;
      gap: 16px;
      align-self: flex-end;
    }
  }


  .actionBarCenter {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }

  .actionBarCenter:has(> :nth-child(2)) {
    justify-content: space-between;
}

  .deactivateUser {
    display: flex;
    align-self: flex-end;
    justify-content: space-between;

    .deactivateUserButton {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #E1F5FE;
      color: #4BB9F7;
      font-weight: bold;
      text-transform: uppercase;
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      cursor: pointer;
    }

    .deactivateUserButton:hover {
      background-color: #E1F5FE;
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .deactivateUserButton:focus:not(:active) {
        background-color: #E1F5FE;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .deactivateUserButton:not(:hover):not(:active) {
        background-color: #E1F5FE;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
  }
  .resourceHeader {
    display: flex;
    gap: 20px;
  }
  .actionBarText {
    display: flex;
    font-size: 24px;
    line-height: 28.13px;
    align-items: center;
    font-weight: 400;
  }
  .actionBarButtonsContainer {
    display: flex;
    flex-direction: row;
    gap: 16px;
  }
  .actionBarButton {
    display: flex !important;
    align-items: center !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    line-height: 16px !important;
    font-weight: 500 !important;
    box-shadow: 0px 2px 2px 0px #0000003d !important;

    .actionBarButtonIcon {
      display: flex;
      align-items: center;
      align-self: center;
      margin-right: 8px;
    }

    .actionBarButtonLabel {
      padding-top: 2px;
    }
  }

  .returnButton {
    display: flex !important;
    align-items: center !important;
    width: min-content;
  }