#page-table {
  background: var(--table-bg);
  border: 1px solid var(--table-border);
  border-radius: 0;
}

#page-table .table-header {
  border-bottom: 1px solid var(--table-border);
  overflow: hidden;
  background: var(--bg-white);
}

#page-table .table-header table,
#page-table .table-responsive table {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
  background: var(--table-bg);
  table-layout: auto;
}

#page-table .table-responsive {
  max-height: calc(100vh - 130px);
  overflow: auto;
}

#page-table th,
#page-table td {
  border: 1px solid var(--table-border);
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.25;
  color: var(--table-text);
  background: var(--table-bg);
  vertical-align: middle;
}

#page-table th {
  background: var(--table-header-bg);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  z-index: 2;
}

#page-table td {
  font-weight: 500;
}

#page-table tbody tr:hover td {
  background: var(--row-hover);
}

#page-table td.drag-selected {
  background: var(--row-selected) !important;
}

#page-table .status-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
}

#page-table .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

#page-table .status-cell.is-live {
  color: var(--status-live);
}

#page-table .status-cell.is-die {
  color: var(--status-die);
}

#page-table .status-cell.is-warn {
  color: var(--status-warn);
}

#page-table .status-cell.is-muted {
  color: var(--status-muted);
}

#page-table .page-name-cell {
  display: flex;
  align-items: center;
   justify-content: flex-start;
  gap: 10px;
}

#page-table .page-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

#page-table .page-name-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#page-table .page-name-link {
  color: var(--table-text);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

#page-table .page-name-link:hover {
  text-decoration: none;
}

#page-table .page-id-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}
#page-table {
  background: var(--table-bg);
  border: 1px solid var(--table-border);
  border-radius: 0;
}