* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
}

.search {
  margin: 1rem;
}
.search__input {
  padding-left: 1rem;
  width: 100%;
  height: 2rem;
}

.users-lists__tabel {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
thead th:nth-child(n) {
  width: auto;
  padding: 0.3rem;
}
tbody {
  text-align: center;
}
td {
  padding: 10px;
}
tr {
  border-bottom: 0.2px solid black;
}
.fa {
  cursor: pointer;
}

.admin-ui__footer {
  display: flex;
  justify-content: space-evenly;
  margin: 1rem;
}

.remove-user__btn {
  width: 10rem;
  height: 2rem;
  background-color: #ff5171;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}
.pagination__container {
  width: 30%;
  display: flex;
  gap: 0.4rem;
}
.pg-btn {
  width: 2rem;
  height: 2rem;
  background-color: #1890ff;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
}
.list__input {
  outline: none;
}
.pg-btn__selected {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;

  background-color: white;
  border: 1px solid #1890ff;
  color: #1890ff;
}
.pg-btn__limit {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: gray;
  background-color: #f5f5f5;
  color: gray;
}
