:root {
  --bg-page: #f0f2f5;
  --bg-card: #ffffff;
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --success: #10b981;
  --danger: #ef4444;
  --dark-danger:#d83030;
  --gray: #6b7280;
  --dark-gray:#59606d;
  --shadow-light: 8px 8px 16px #d1d9e6;
  --shadow-dark: -8px -8px 16px #ffffff;
  --radius: 12px;
}

.neo-filter {
  background: var(--bg-page);
  padding: 40px 0;
  font-family: "Segoe UI", sans-serif;
}
.neo-filter .filter-chips {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
}
.neo-filter .filter-chips .chip-input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: inset var(--shadow-light), inset var(--shadow-dark);
  font-size: 14px;
}
.neo-filter .filter-chips .chip-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}
.neo-filter .filter-chips .chip-clear {
  margin-top: 5px;
  padding: 6px 10px 0px 10px;
  border: none;
  border-radius: var(--radius);
  background: var(--danger);
  color: #fff;
  cursor: pointer;
}
.neo-filter .filter-chips .chip-clear:hover {
  background: var(--dark-danger);
}
.neo-filter .filter-chips .chip-btn {
  padding: 8px 14px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.neo-filter .filter-chips .chip-btn.btn-filter {
  background: var(--primary);
  color: #fff;
}
.neo-filter .filter-chips .chip-btn.btn-filter:hover {
  background: var(--primary-dark);
}
.neo-filter .filter-chips .chip-btn.btn-reset {
  background: var(--gray);
  color: #fff;
}
.neo-filter .filter-chips .chip-btn.btn-reset:hover {
  background: var(--dark-gray);
}
.neo-filter .neo-table {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  overflow-x: auto;
}
.neo-filter .neo-table .table {
  margin: 0;
}
.neo-filter .neo-table .table thead {
  background: #eef2ff;
}
.neo-filter .neo-table .table thead th {
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  text-transform: uppercase;
}
.neo-filter .neo-table .table thead th:nth-child(1) {
  min-width: 20px !important;
}
.neo-filter .neo-table .table thead th:nth-child(2),
.neo-filter .neo-table .table thead th:nth-child(3),
.neo-filter .neo-table .table thead th:nth-child(4),
.neo-filter .neo-table .table thead th:nth-child(5),
.neo-filter .neo-table .table thead th:nth-child(7) {
  min-width: 100px !important;
}
.neo-filter .neo-table .table thead th:nth-child(6),
.neo-filter .neo-table .table thead th:nth-child(8) {
  min-width: 104px !important;
}
.neo-filter .neo-table .table tbody td {
  padding: 14px;
  font-size: 14px;
  vertical-align: middle;
}
.neo-filter .neo-table .table tbody td .btns {
  display: flex;
  gap: 0.5rem;
}
.neo-filter .neo-table .table tr:hover {
  background: #f9fafc;
}
.neo-filter .neo-table .table .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
}
.neo-filter .neo-table .table .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.neo-filter .neo-table .table .status {
  font-weight: 600;
}
.neo-filter .neo-table .table .status.active {
  color: var(--success);
}
.neo-filter .neo-table .table .status.inactive {
  color: var(--danger);
}
.neo-filter .neo-table .table .icon-btn {
  border: none;
  background: var(--bg-card);
  box-shadow: var(--shadow-light), var(--shadow-dark);
  border-radius: 8px;
  padding: 6px 10px;
  margin: 0 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.neo-filter .neo-table .table .icon-btn:hover {
  transform: translateY(-2px);
}
.neo-filter .neo-table .table .icon-btn.view {
  color: var(--primary);
}
.neo-filter .neo-table .table .icon-btn.edit {
  color: #f59e0b;
}
.neo-filter .neo-table .table .icon-btn.delete {
  color: var(--danger);
}/*# sourceMappingURL=filter-formDesign3.css.map */