.container {
  display: flex;
  height: 100vh;
  border: 1px solid rgb(229, 231, 235);
  border-radius: 4px;
}

.sidebar {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 10px;
  z-index: 1000;
  width: 290px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(229, 231, 235);
  border-radius: 4px;
  flex-shrink: 0;
  flex-grow: 0;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.stepStyle {
  padding: 10px;
}

.sidebarLabel {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 500;
  border-bottom: 1px solid rgb(229, 231, 235);
  color: #111927;
  padding-bottom: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(17, 25, 39, 0.04);
}

.sidebarNode {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(229, 231, 235);
  font-size: 16px;
  color: #111927;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
  display: block;
  width: 100%;
}

.sidebarNode:hover {
  background-color: rgba(17, 25, 39, 0.04);
}

.stepLabel:hover {
  cursor: pointer;
}

.stepFormActions {
  display: flex;
  justify-content: flex-end;
  margin: 8px;
  gap: 8px;
}

.gridAlignment {
  padding-left: 0px !important;
}

.multiSelectChipStyle {
  border-radius: 8px !important;
  color: #000 !important;
  background-color: #e2e2e5 !important;
}

.link {
  align-items: center;
  display: inline-flex;
}

.linkBox {
  margin-left: 10rem;
  margin-bottom: 4rem;
}

.warningBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0px;
}

.warningmsg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background-color: #ffffcc;
  border: 1px solid #fafa13;
  border-radius: 8px;
  color: #000;
  padding: 5px 15px;
}

.warningIcon {
  font-size: 17px !important;
}

@media only screen and (max-width: 1399px) and (min-width: 1200px) {
  .tableHeadClass table thead th {
    padding: 4px 8px !important;
    text-align: center !important;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 850px) {
  .tableHeadClass table thead th {
    padding: 4px 6px !important;
  }
}