.body {
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9em;
  margin: 0;
}

.container {
  display: flex;
  justify-items: space-between;
  width: 100%;
}

.table-section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 50%;
  padding: 10px;
}

.table-section__container {
  display: flex;
}

/* column-hider */

.users-table__column-hider {
  width: 75%;
  font-size: 1.2em;
}

.users-table__column-hider-fieldset {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  border-style: dotted;
}

.users-table-column-hider__label {
  display: inline-block;
  text-align: top;
}

.users-table__pagination {
  width: 25%;
  font-size: 1.2em;
}

.users-table__pagination-fieldset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
  border-style: dotted;
}

.users-table__pagintaion-stats {
  display: flex;
  width: 100%;
  font-size: 0.85em;
  justify-content: space-between;
}

.users-table-pagination__button-group {
  display: flex;
  align-content: center;
  justify-content: space-around;
  width: 100%;
}

.users-table-pagination__back-button,
.users-table-pagination__next-button {
  font-size: 1.3em;
  background: none;
  border: none;
}

.users-table-pagination__page {
  font-size: 15pt;
}

/* table */

.users-table {
  table-layout: fixed;
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
}

.users-table__caption {
  font-size: 1.5em;
  text-align: left;
  padding: 10px 10px 10px 0px;
}

.users-table__1-column-head,
.users-table__2-column-head,
.users-table__3-column-head {
  text-align: left;
  font-weight: bold;
  padding: 10px;
  background: #53b4f3;
  color: #ffffff;
  cursor: pointer;
}

.users-table__4-column-head {
  font-weight: bold;
  padding: 10px;
  background: #53b4f3;
  color: #ffffff;
  cursor: pointer;
}

.users-table__body-row {
  border-bottom: 1px solid rgba(153, 153, 153, 0.164);
  border-left: none;
  border-right: none;
}

.users-table__body-row {
  background-color: #ffffff;
}

.users-table__body-row:hover {
  background-color: #8dcdf83d;
}

.users-table__1-column-body,
.users-table__2-column-body {
  padding-left: 10px;
}

.users-table__3-column-body {
  padding-left: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.users-table__4-column-body {
  padding-left: 10px;
  text-align: center;
  width: auto;
}

.eye-color-input {
  width: 25px;
  height: 25px;
  background: transparent;
  border: none;
}

/* edit form */

.edit-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: auto;
  padding: 10px;
  border: 1px dashed bl;
}

.users-table-edit-form {
  width: 50%;
  height: auto;
  padding: 10px;
  border-radius: 10px;
  background-color: #5bbdf9;
  color: #f2f3f4;
  box-shadow: 5px 5px 0px 0px #42a8fc, 10px 10px 0px 0px #137cc7,
    5px 5px 15px 5px rgba(0, 0, 0, 0);
}

.users-table-edit-form__caption {
  color: #fffefd;
}

.users-table-edit-form__item {
  margin-top: 10px;
}

.users-table-edit-form__label {
  font-size: 1.1em;
}

.users-table-edit-form__input,
.users-table-edit-form__select {
  box-sizing: border-box;
  width: 100%;
  height: 35px;
  margin-top: 5px;
  padding: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
  white-space: pre-line;
  background-color: #53b4f3;
  border: none;
  color: whitesmoke;
  border-radius: 5px;
}

.users-table-edit-form__textarea {
  box-sizing: border-box;
  width: 100%;
  margin-top: 5px;
  padding: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
  white-space: pre-line;
  background-color: #53b4f3;
  border: none;
  color: whitesmoke;
  border-radius: 5px;
}

.users-table-edit-form__save-button {
  width: 100%;
  height: 35px;
  border-radius: 30px;
  border-color: #fffefd;
  background-color: #5bbdf9;
  border-style: none;
  border: 2px solid whitesmoke;
  color: #fffefd;
}

.users-table-edit-form__textarea {
  resize: vertical;
}

@media (max-width: 991px) {
  .container {
    flex-wrap: wrap-reverse;
  }

  .table-section {
    width: 100%;
  }

  .edit-section {
    width: 100%;
  }

  .users-table {
    margin-top: 30px;
  }

  .users-table-edit-form {
    width: 100%;
    box-shadow: none;
  }

  .users-table__column-hider {
    width: 40%;
  }

  .users-table__pagination {
    width: 60%;
  }

  .users-table__pagintaion-stats {
    justify-content: space-between;
  }
}
