.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}


.primary-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.primary-btn:hover {
  background: #1d4ed8;
}


.status-badge.active {
  background: #dcfce7;
  color: #15803d;
}

.status-badge.inactive {
  background: #fee2e2;
  color: #991b1b;
}


.action-cell {
  display: flex;
  gap: 8px;
}

.action-btn {
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

.action-btn.edit {
  background: #e0f2fe;
  color: #0369a1;
}

.action-btn.delete {
  background: #fee2e2;
  color: #991b1b;
}
