/* Let content fill the viewport instead of capping at the shared 1400px
   .main-content width (oracle.css). Without this the wide admin tables —
   Users (8 cols), Channels (8), Roles (7) — overflow their capped container
   on wide screens and push the Actions column off-screen. */
.app-shell .main-content {
  max-width: none;
}

.table-wrapper {
  overflow: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
}

.table-wrapper .data-table {
  min-width: 100%;
}
