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

.page-content-wrapper {
  background-color: #f6f6f6;
  min-height: 100vh;
  padding-top: 4.5rem;
}

.page-content {
  padding: 2rem 0.5rem;
}

.page-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.table-wrapper {
  background-color: white;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.table-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0.6rem;
}

.table-header .search-input {
  position: relative;
}

.table-header .search-input input {
  padding: 0.4rem 1rem 0.5rem 3rem;
}

.table-header .search-input i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.table-header .add-button {
  padding: 0.4rem 1rem 0.5rem 1rem;
  background-color: #0041c2;
  color: white;
  outline: none;
  border: 1px solid #0041c2;
  border-radius: 0.2rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.table-header .add-button i {
  font-size: 1.2rem;
}

.table-header .add-button:hover {
  background-color: transparent;
  color: #0041c2;
}

/* TABLE  */
.custom-table-heading {
  text-wrap: nowrap;
  padding: 0.5rem 1rem !important;
}

.custom-table-heading.center {
  text-align: center;
}

.custom-table-heading.right {
  text-align: right;
}

.custom-table-cell {
  padding: 0.5rem 1rem !important;
}

.custom-table-cell.center {
  text-align: center;
}

.custom-table-cell.right {
  text-align: right;
}

.custom-table-image {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 4px;
  cursor: pointer;
}

.custom-table-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1rem 1rem 1rem;
}

.custom-table-pagination button {
  padding: 0.4rem 1rem;
  background-color: transparent;
  color: gray;
  outline: none;
  border: 1px solid gray;
  border-radius: 0.2rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .page-content-wrapper {
    margin-left: 260px;
  }

  .page-content {
    padding: 2rem 1.5rem;
  }
  .table-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1rem 1rem;
  }

  .table-header .search-input input {
    min-width: 360px;
  }
}
