table {
  border: 1px solid tomato;
  border-radius: 4px;
  width: 100%;
  padding: 10px;
  font-size: 13px;
  color: #444;
  border-collapse: collapse;
}

table > thead {
  background-color: tomato;
  color: #fff;
}

table > thead th {
  padding: 15px;
}

table th,
table td {
  border: 1px solid #00000017;
  padding: 5px;
  text-align: center;
}

table > tbody > tr > td > img {
  display: inline-block;
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.action_btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.action_btn > a {
  text-decoration: none;
  color: #444;
  background: #fff;
  border: 1px solid;
  display: inline-block;
  padding: 7px 10px;
  font-weight: bold;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}

.action_btn > a:nth-child(1) {
  border-color: gray;
}

.action_btn > a:nth-child(2) {
  border-color: grey;
}

.action_btn > a:hover {
  box-shadow: 0 3px 8px #0003;
}

table > tbody > tr {
  background-color: #fff;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

table > tbody > tr:nth-child(even) {
  background-color: rgb(250, 250, 250);
}

table > tbody > tr:hover {
  background-color: rgb(231, 231, 231);
}

td:nth-child(1) {
  width: 60px;
}

td:nth-child(2) {
  width: 120px;
}

td:nth-child(4) {
  width: 100px;
}

td:nth-child(5) {
  width: 120px;
}


/* =============Pagination========= */

.pagination {
  display: inline-block;
  margin: 50px 0px;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #e3e3e3;
}

.pagination a.active {
  background-color: #0366fc;
  color: white;
  border: 1px solid #0366fc;
}

.pagination a:hover {
  background-color: #0366fc;
  color: white;
  border: 1px solid #0366fc;
}

#actions {
  width: 120px !important;
  text-align: center;
}


#actions input[type=checkbox]{
  accent-color:#004fe3;
  color:white;
  height: 15px;
  width: 15px;
}


#actions a {
  margin-left: 15px;
  color: #004fe3;
}

#actions a i {
  font-size: 18px;
}
