html,
body {
  margin: 0;
  padding: 0.6rem;
  width: 100%;
  height: 100%;
}

.text-right {
  text-align: right;
}

.m-10px {
  margin: 10px;
}

.m-b-10px {
  margin-bottom: 10px;
}

.text-overflow {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.content-div {
  height: calc(100% - 25%);
  overflow: auto;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: end;
}

.justify-between {
  justify-content: space-between;
}

.item-center {
  align-items: center;
}