:root {
  --bg: #f4efe6;
  --panel: rgba(255, 251, 245, 0.92);
  --panel-strong: #fffaf1;
  --ink: #15120f;
  --muted: #675d55;
  --line: rgba(21, 18, 15, 0.12);
  --accent: #d94f3d;
  --accent-soft: rgba(217, 79, 61, 0.12);
  --accent-strong: #a62e20;
  --success: #2f7a42;
  --warning: #9a5d14;
  --danger: #9a2626;
  --shadow: 0 24px 80px rgba(64, 39, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top right, rgba(217, 79, 61, 0.18), transparent 28rem),
    radial-gradient(circle at bottom left, rgba(34, 94, 149, 0.12), transparent 30rem),
    linear-gradient(180deg, #fbf6ee 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 18, 15, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 18, 15, 0.02) 1px, transparent 1px);
  background-size: 2rem 2rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent);
}

.page-shell {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.auth-panel,
.section-card,
.setup-card,
.metric-card,
.status-panel,
.table-card,
.field-group textarea,
.field-group input {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.setup-label,
.section-label,
.metric-label,
.chip {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.setup-label,
.section-label,
.metric-label {
  color: var(--accent-strong);
}

.access-card h1,
.setup-card h2,
.section-header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.4rem);
  line-height: 0.95;
}

.auth-status,
.muted-copy,
.section-note,
.table-empty,
.error-copy,
.status-copy,
.pill-note {
  color: var(--muted);
}

.meta-strip,
.chip-strip,
.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip,
.viewer-pill {
  border-radius: 999px;
  border: 1px solid rgba(217, 79, 61, 0.18);
  background: rgba(255, 250, 241, 0.9);
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
}

.admin-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-section-nav {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.15rem;
}

.section-jump-link {
  border: 1px solid rgba(21, 18, 15, 0.1);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.68);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  text-decoration: none;
}

.section-jump-link:hover {
  border-color: rgba(21, 18, 15, 0.24);
  color: var(--ink);
}

.refresh-pill {
  margin-left: auto;
}

.ghost-button {
  border: 1px solid rgba(21, 18, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.ghost-button:hover {
  border-color: rgba(21, 18, 15, 0.3);
}

.approve-action {
  border-color: rgba(47, 122, 66, 0.24);
  background: rgba(47, 122, 66, 0.12);
  color: var(--success);
}

.approve-action:hover {
  border-color: rgba(47, 122, 66, 0.42);
}

.remove-action,
.danger-action {
  border-color: rgba(154, 38, 38, 0.18);
  color: var(--danger);
}

.remove-action {
  background: rgba(154, 38, 38, 0.1);
}

.remove-action:hover,
.danger-action:hover {
  border-color: rgba(154, 38, 38, 0.34);
}

.ghost-button[disabled],
.ghost-button[aria-busy="true"] {
  opacity: 0.6;
  cursor: progress;
  pointer-events: none;
}

.action-required-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
  border-color: rgba(154, 93, 20, 0.28);
  background: rgba(255, 239, 213, 0.84);
}

.action-required-card h3 {
  margin: 0.15rem 0 0.45rem;
}

.auth-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.auth-panel-locked {
  grid-template-columns: 1fr;
  max-width: 32rem;
  margin: 12vh auto 1.5rem;
}

.setup-card {
  padding: 1.3rem;
  background: var(--panel-strong);
}

.access-card {
  padding: 1.6rem;
}

.setup-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

a {
  color: var(--accent-strong);
}

.auth-status {
  min-height: 2.4rem;
  margin: 1rem 0;
}

.google-button {
  min-height: 42px;
}

.dashboard-root {
  display: grid;
  gap: 1rem;
}

.section-card,
.table-card,
.status-panel {
  padding: 1.2rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.settings-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.field-group textarea,
.field-group input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 251, 245, 0.95);
}

.field-group textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: 2px solid rgba(217, 79, 61, 0.2);
  border-color: rgba(217, 79, 61, 0.36);
}

.field-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.settings-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.settings-feedback {
  min-height: 2.4rem;
}

.setup-rows {
  display: grid;
  gap: 0.95rem;
}

.setup-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: rgba(255, 251, 245, 0.82);
}

.setup-row h3 {
  margin: 0;
  font-size: 1.18rem;
}

.setup-row-meta,
.setup-row-editor,
.setup-row-actions,
.setup-row-links {
  display: grid;
  gap: 0.65rem;
}

.setup-row-actions {
  justify-items: start;
  align-content: start;
  grid-auto-flow: column;
  align-items: center;
}

.setup-row-links {
  grid-auto-flow: row;
}

.setup-value-display,
.setup-input {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

.setup-value-display {
  display: flex;
  align-items: center;
}

.setup-value-display.multiline {
  display: block;
  white-space: pre-wrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.87rem;
  line-height: 1.55;
  overflow-x: auto;
}

.setup-value-display.is-configured {
  color: var(--success);
}

.setup-value-display.is-missing {
  color: var(--warning);
}

.setup-input {
  resize: vertical;
}

.setup-input:focus {
  outline: 2px solid rgba(217, 79, 61, 0.2);
  border-color: rgba(217, 79, 61, 0.36);
}

.action-link {
  width: fit-content;
  text-decoration: none;
}

.status-strip .action-link {
  padding-block: 0.55rem;
}

.status-copy {
  margin: 0.85rem 0 0;
}

.primary-button {
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf4;
  font: inherit;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
}

.primary-button:hover {
  background: var(--accent-strong);
}

.primary-button[disabled] {
  opacity: 0.72;
  cursor: progress;
}

.settings-help {
  display: grid;
  gap: 1rem;
}

.form-panels,
.history-grid,
.investor-card-grid {
  display: grid;
  gap: 1rem;
}

.form-panels,
.history-grid {
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.investor-card-grid {
  margin-top: 1rem;
}

.form-card,
.history-card,
.entity-form {
  display: grid;
  gap: 0.85rem;
}

.form-card h3,
.form-card h4,
.history-card h3,
.history-card h4,
.investor-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.history-card,
.form-card-compact {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.68);
}

.investor-card {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-actions .field-note {
  max-width: 42rem;
}

.help-card {
  height: fit-content;
}

.settings-list {
  margin-top: 0.75rem;
}

.section-grid,
.metrics-grid,
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.metric-card {
  padding: 1rem;
  min-height: auto;
}

.metric-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.metric-card-header .metric-label {
  margin: 0;
}

.metric-value {
  margin-top: 0.35rem;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.metric-subvalue {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.revenue-run-rate-card {
  grid-column: 1 / -1;
  min-height: 24rem;
  overflow: hidden;
}

.segmented-control {
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.segmented-control-button {
  border: 0;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.segmented-control-button.is-active {
  color: #fffaf4;
  background: var(--ink);
}

.run-rate-chart {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.run-rate-chart-frame {
  display: grid;
  grid-template-columns: 4.4rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: stretch;
}

.run-rate-y-axis {
  position: relative;
  min-height: 15rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.run-rate-y-axis-label {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  white-space: nowrap;
}

.run-rate-y-axis-label:first-child {
  transform: translateY(0);
}

.run-rate-y-axis-label:last-child {
  transform: translateY(-100%);
}

.run-rate-chart-plot {
  position: relative;
  min-height: 15rem;
}

.run-rate-chart-plot svg {
  display: block;
  width: 100%;
  height: 15rem;
  min-height: 15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(47, 122, 66, 0.08), rgba(217, 79, 61, 0.04));
}

.run-rate-grid-line {
  stroke: rgba(21, 18, 15, 0.14);
  stroke-dasharray: 1.4 2.4;
  stroke-width: 0.28;
  vector-effect: non-scaling-stroke;
}

.run-rate-grid-line-horizontal {
  stroke: rgba(21, 18, 15, 0.09);
}

.run-rate-chart-line,
.run-rate-chart-area {
  vector-effect: non-scaling-stroke;
}

.run-rate-chart-line {
  fill: none;
  stroke: var(--success);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.run-rate-chart-area {
  fill: rgba(47, 122, 66, 0.16);
}

.run-rate-hover-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.run-rate-hover-dot {
  position: absolute;
  width: 0.52rem;
  height: 0.52rem;
  border: 2px solid rgba(255, 250, 244, 0.94);
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 1px rgba(21, 18, 15, 0.24);
  opacity: 0.72;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.run-rate-hover-dot:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.45);
}

.run-rate-axis {
  position: relative;
  min-height: 1rem;
  margin: -0.1rem 0 0.15rem calc(4.4rem + 0.55rem);
  color: var(--muted);
  font-size: 0.72rem;
}

.run-rate-axis-label {
  position: absolute;
  top: 0;
  max-width: 5rem;
  transform: translateX(-50%);
  white-space: nowrap;
}

.run-rate-axis-label:first-child {
  transform: translateX(0);
}

.run-rate-axis-label:last-child {
  transform: translateX(-100%);
}

.run-rate-chart-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.run-rate-chart.is-empty {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.table-title {
  margin: 1rem 0 0.55rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.table-card thead th {
  text-align: left;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
  padding-bottom: 0.8rem;
}

.table-sort-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.table-sort-button:hover {
  color: var(--ink);
}

.table-card tbody td {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0;
  vertical-align: top;
  font-size: 0.94rem;
}

.table-card tfoot th {
  border-top: 1px solid var(--ink);
  padding: 0.85rem 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  text-align: left;
}

.table-card th,
.table-card td,
.table-card .mono {
  overflow-wrap: anywhere;
  word-break: normal;
}

.table-card tbody tr:first-child td {
  border-top: 1px solid var(--line);
}

.server-utilization-row td {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 0.95rem;
}

.server-utilization-spacer {
  border-top: 0;
}

.server-cpu-usage {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.server-cpu-usage-bar {
  height: 0.7rem;
  border: 1px solid rgba(21, 18, 15, 0.1);
  border-radius: 999px;
  background: rgba(21, 18, 15, 0.08);
  overflow: hidden;
}

.server-cpu-usage-fill {
  height: 100%;
  min-width: 0.35rem;
  border-radius: inherit;
  background: linear-gradient(90deg, #b42318 0%, #d8901f 52%, #2f7a42 100%);
}

.server-cpu-usage-label {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.server-cpu-usage.unavailable .server-cpu-usage-fill {
  display: none;
}

.autoscaler-events-table table {
  table-layout: fixed;
}

.autoscaler-events-table .event-time-col {
  width: 12.5rem;
}

.autoscaler-events-table .event-type-col {
  width: 10.75rem;
}

.autoscaler-events-table .event-scope-col {
  width: 11.5rem;
}

.autoscaler-events-table th:nth-child(2),
.autoscaler-events-table td:nth-child(2) {
  white-space: nowrap;
}

.autoscaler-events-table td:nth-child(2) .chip {
  max-width: 100%;
  justify-content: center;
  padding-inline: 0.65rem;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.compact-market-table table {
  table-layout: fixed;
}

.compact-market-table th:first-child,
.compact-market-table td:first-child {
  width: 16%;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-color: transparent;
  background: var(--accent-soft);
}

.chip.success {
  color: var(--success);
  background: rgba(47, 122, 66, 0.12);
}

.chip.warning {
  color: var(--warning);
  background: rgba(154, 93, 20, 0.12);
}

.chip.danger {
  color: var(--danger);
  background: rgba(154, 38, 38, 0.12);
}

.status-panel {
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(255, 239, 229, 0.92));
}

.investor-list,
.history-list,
.resource-market-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.investor-summary-row,
.investor-detail-card,
.investment-entry-card,
.resource-market-card {
  display: grid;
  gap: 1rem;
}

.investor-summary-table {
  margin-top: 1rem;
}

.investor-summary-table table {
  min-width: 0;
}

.investor-summary-table tbody tr.is-selected td {
  background: rgba(217, 79, 61, 0.08);
}

.inline-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.compact-button {
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
}

.resource-market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.investor-summary-header,
.row-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.row-actions,
.inline-actions {
  justify-content: flex-start;
}

.inline-action-form {
  margin: 0;
}

.danger-action {
  background: rgba(154, 38, 38, 0.08);
}

.region-allow-list-table .region-col {
  width: 10%;
}

.region-allow-list-table .subscription-col {
  width: 18%;
}

.region-allow-list-table .approval-col,
.region-allow-list-table .feasible-col {
  width: 9%;
}

.region-allow-list-table .quota-col {
  width: 13%;
}

.region-allow-list-table .status-col {
  width: 29%;
}

.region-allow-list-table .action-col {
  width: 12%;
}

.region-allow-list-table td:last-child .ghost-button,
.region-allow-list-table td:last-child .chip {
  display: inline-flex;
  align-items: center;
  min-width: 7.5rem;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.region-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.85rem 0 1rem;
  color: var(--muted);
  font-weight: 700;
}

.region-filter-toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
}

.investor-detail-placeholder {
  margin-top: 1rem;
}

.status-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.is-hidden {
  display: none !important;
}

.loading-state {
  padding: 2rem;
  text-align: center;
}

.spinner {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 3px solid rgba(21, 18, 15, 0.14);
  border-top-color: var(--accent);
  margin: 0 auto 0.75rem;
  animation: spin 0.9s linear infinite;
}

.noscript-banner {
  padding: 1rem;
  text-align: center;
  color: var(--danger);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .auth-panel,
  .settings-grid,
  .section-grid,
  .metrics-grid,
  .cards-grid,
  .form-panels,
  .history-grid {
    grid-template-columns: 1fr;
  }

  .setup-row {
    grid-template-columns: 1fr;
  }

  .setup-row-actions {
    grid-column: 1 / -1;
    justify-items: start;
    grid-auto-flow: column;
  }

  .section-header,
  .settings-actions {
    flex-direction: column;
  }

  .resource-market-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: stretch;
  }

  .refresh-pill {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 1rem 0.9rem 3rem;
  }

  .auth-panel,
  .settings-grid,
  .settings-form,
  .section-grid,
  .metrics-grid,
  .cards-grid,
  .form-panels,
  .history-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .setup-row {
    grid-template-columns: 1fr;
  }

  .action-required-card {
    align-items: stretch;
    flex-direction: column;
  }

  .setup-row-actions {
    grid-column: auto;
    grid-auto-flow: row;
  }

  .table-card table,
  .table-card thead,
  .table-card tbody,
  .table-card tr,
  .table-card th,
  .table-card td {
    display: block;
    width: 100%;
  }

  .table-card colgroup,
  .table-card thead {
    display: none;
  }

  .table-card tbody tr {
    border-top: 1px solid var(--line);
    padding: 0.75rem 0;
  }

  .table-card tbody tr:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .table-card tbody td,
  .table-card tbody tr:first-child td {
    display: grid;
    grid-template-columns: minmax(7rem, 30%) minmax(0, 1fr);
    gap: 0.75rem;
    border-top: 0;
    padding: 0.5rem 0;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  .table-card tbody td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .server-utilization-row td {
    padding: 0.55rem 0 0.85rem;
  }

  .server-utilization-spacer {
    display: none !important;
  }

  .server-cpu-usage {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .server-cpu-usage-label {
    white-space: normal;
  }

  .form-actions {
    flex-direction: column;
  }

  .metric-card-header,
  .run-rate-chart-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .investor-summary-header,
  .row-actions,
  .inline-actions,
  .setup-row-actions,
  .inline-table-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
