.table-design-2 .custom-card {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 1rem;
  overflow: hidden;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}
.table-design-2 .custom-card-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
  border: none;
  overflow-x: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.table-design-2 .custom-table thead {
  background: linear-gradient(135deg, #141e30, #243b55);
  color: #fff;
}
.table-design-2 .custom-table tbody tr {
  transition: all 0.3s ease;
}
.table-design-2 .custom-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.08);
}
.table-design-2 .custom-table tbody tr td:hover {
  background: rgba(102, 126, 234, 0.08);
  transform: translateY(0.3);
}
.table-design-2 .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 100px;
}
.table-design-2 .status-badge.active {
  background: #d1fae5;
  color: #065f46;
}
.table-design-2 .status-badge.inactive {
  background: #fee2e2;
  color: #991b1b;
}
.table-design-2 .btn-action {
  border: none;
  border-radius: 50%;
  padding: 0.4rem 0.6rem;
  margin: 0 0.25rem;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.table-design-2 .btn-action.edit i {
  color: #2563eb;
}
.table-design-2 .btn-action.delete i {
  color: #dc2626;
}
.table-design-2 .table td {
  vertical-align: middle;
  /* Center align vertically */
  padding: 12px;
  font-size: 15px;
  color: #333;
  white-space: nowrap;
}
.table-design-2 .table td .cell-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.table-design-2 .table td i {
  font-size: 16px;
  color: #6c63ff;
}
.table-design-2 .table-responsive {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}/*# sourceMappingURL=tableDesign2.css.map */