.wrapper {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

.table--data {
  flex: 1;
  border: 3px solid #000;
}

.table__head {
  border-bottom: 1px solid #000;
}

.table__head--border-bold {
  border-bottom: 4px solid #000;
}

.table__row,
.table__heading,
.table__cell {
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  border: 1px solid #000;
}

.table__heading--border-bold {
  border: 3px solid #000;
}

.table__heading--left {
  text-align: left;
}

.table__heading--right {
  text-align: right;
}

.table__row--total {
  border-bottom: 4px solid #000;
}

.table__row--color-gray {
  background-color: #dadada;
}

.table__line {
  display: block;
}

.table__line--bold,
.table__heading--bold,
.table__cell--bold,
.table__row--bold {
  font-weight: bold;
  line-height: 1.6;
}

.table__cell--left-bold {
  border-left: 3px solid #000;
}

.table__cell--right-bold {
  border-right: 3px solid #000;
}

.table__cell--left {
  text-align: left;
}

.table__cell--right {
  text-align: right;
}

.table__cell--no-border-bottom {
  border-bottom: hidden;
}

.table--admin {
  flex: 1;
}

.badge--active {
  padding: 5px 10px;
  color: #00ff04;
  background-color: #b1cdba;
  border-radius: 5px;
}

.badge--not-found {
  padding: 5px 10px;
  color: #e6e600;
  background-color: #afb38d;
  border-radius: 5px;
}

.table--admin .table__row,
.table--admin .table__heading,
.table--admin .table__cell {
  border: 1px solid #ccc;
}

.table--admin .table__body .table__row:nth-child(even) {
  background-color: #f5f5f5;
}

.avatar-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-wrapper i {
  position: absolute;
  top: 18px;
  right: -10px;
  background-color: #fff;
  color: blue;
  font-size: 1rem;
  border-radius: 50%;
}

.table--admin .table__row{
  opacity: 1;
  transition: opacity ease 0.4s;
}

.table--admin .table__row:hover {
  opacity: 0.6;
  transition: opacity ease 0.4s;
}
