:root {
  --bg-light: #f4f7fb;
  --bg-card: #fff;
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --danger: #ef4444;
  --danger-dark: #dc2626;
  --success: #22c55e;
  --gray: #9ca3af;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

.smart-filter {
  background: var(--bg-light);
  padding: 40px 0;
  font-family: "Segoe UI", sans-serif;
}
.smart-filter .filter-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.smart-filter .filter-card .filter-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}
.smart-filter .filter-card .form-control,
.smart-filter .filter-card .form-select {
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}
.smart-filter .filter-card .form-control:focus,
.smart-filter .filter-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
}
.smart-filter .filter-card .btn-clear {
  background: var(--danger);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 10px;
  transition: background 0.2s;
}
.smart-filter .filter-card .btn-clear:hover {
  background: var(--danger-dark);
}
.smart-filter .filter-card .btn-filter {
  background: var(--primary);
  color: #fff;
  margin-right: 5px;
}
.smart-filter .filter-card .btn-filter:hover {
  background: var(--primary-dark);
}
.smart-filter .filter-card .btn-reset {
  background: var(--gray);
  color: #fff;
}
.smart-filter .filter-card .btn-reset:hover {
  background: #6b7280;
}
.smart-filter .table-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.smart-filter .table-card .custom-table {
  margin: 0;
}
.smart-filter .table-card .custom-table thead {
  background: #eef4ff;
}
.smart-filter .table-card .custom-table thead th {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
}
.smart-filter .table-card .custom-table thead th:nth-child(1) {
  min-width: 20px !important;
}
.smart-filter .table-card .custom-table thead th:nth-child(2),
.smart-filter .table-card .custom-table thead th:nth-child(3),
.smart-filter .table-card .custom-table thead th:nth-child(4),
.smart-filter .table-card .custom-table thead th:nth-child(5),
.smart-filter .table-card .custom-table thead th:nth-child(7) {
  min-width: 100px !important;
}
.smart-filter .table-card .custom-table thead th:nth-child(6),
.smart-filter .table-card .custom-table thead th:nth-child(8) {
  min-width: 116px !important;
}
.smart-filter .table-card .custom-table tbody td {
  vertical-align: middle;
  padding: 12px 16px;
}
.smart-filter .table-card .custom-table tbody td .btns {
  display: flex;
}
.smart-filter .table-card .custom-table tr:hover {
  background: #f9fafc;
}
.smart-filter .table-card .custom-table .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.smart-filter .table-card .custom-table .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.smart-filter .table-card .custom-table .btn-action {
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  margin: 0 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.smart-filter .table-card .custom-table .btn-action.view {
  background: var(--primary);
  color: #fff;
}
.smart-filter .table-card .custom-table .btn-action.view:hover {
  background: var(--primary-dark);
}
.smart-filter .table-card .custom-table .btn-action.edit {
  background: #facc15;
  color: #000;
}
.smart-filter .table-card .custom-table .btn-action.edit:hover {
  background: #eab308;
}
.smart-filter .table-card .custom-table .btn-action.delete {
  background: var(--danger);
  color: #fff;
}
.smart-filter .table-card .custom-table .btn-action.delete:hover {
  background: var(--danger-dark);
}/*# sourceMappingURL=filter-formDesign2.css.map */