.dataTables_length select {
  border-radius: 2rem;
}

.dataTables_filter input {
  border-radius: 2rem;
}

.dataTables_filter input:focus {
  outline: none;
}

.dataTables_filter input::-webkit-search-cancel-button {
  display: none;
}

.dataTables_filter {
  position: relative;
}

.dataTables_filter input[type="search"] {
  padding-left: 1rem;
}

.page-item .page-link {
    border-radius: 50% !important;
    margin: 0 4px;
    width: 38px;
    height: 38px;
    text-align: center;
    padding: 6px 0;
}

.table {
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #d1d5db;
  border-radius: 1.5rem;
  overflow: hidden;
}

.table th,
.table td {
  border: none;
}

.table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #d1d5db;
}

.table thead tr:first-child th:first-child {
  border-top-left-radius: 1.5rem;
}

.table thead tr:first-child th:last-child {
  border-top-right-radius: 1.5rem;
}

.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 1.5rem;
}

.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 1.5rem;
}

.dataTables_filter::before {
  content: "\f002";
  font-family: FontAwesome;
  font-size: 1rem;
  color: #000;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 576px) {
  .dataTables_filter::before {
    left: 15rem;
  }

  .dataTables_filter input {
    right: 0.9rem;
    padding-right: 2rem;
  }
}