:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7f9;
  color: #19202a;
  --fpa-visible-width: 100vw;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.account-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(18px, 5vw, 56px);
  place-items: center;
}

.account-panel {
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  display: grid;
  gap: 22px;
  max-width: 760px;
  padding: clamp(20px, 4vw, 34px);
  width: min(100%, 760px);
}

.account-panel h1 {
  white-space: normal;
}

.account-form {
  border-top: 1px solid #e2e8f0;
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.account-form h2 {
  color: #05294d;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.app-header {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.98)),
    linear-gradient(90deg, rgba(6, 55, 109, 0.09), transparent 52%);
  border-bottom: 1px solid #d9dee7;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(380px, 1fr) minmax(220px, 320px);
  min-height: 156px;
  padding: 18px clamp(18px, 4vw, 48px);
}

.brand-lockup {
  align-items: center;
  display: flex;
  gap: 20px;
  min-width: 0;
}

.product-logo {
  background: linear-gradient(135deg, #05294d, #5b6b9e 70%, #8bb5d8);
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(5, 41, 77, 0.2);
  color: #ffffff;
  flex: 0 0 auto;
  height: 76px;
  overflow: hidden;
  position: relative;
  width: 76px;
}

.product-logo::after {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 13px;
  content: "";
  inset: 6px;
  position: absolute;
}

.product-logo span {
  font-size: 1.45rem;
  font-weight: 950;
  left: 9px;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 19px;
  z-index: 1;
}

.product-logo i {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48) 1px, transparent 1px);
  background-size: 8px 8px;
  bottom: 13px;
  height: 20px;
  left: 14px;
  opacity: 0.72;
  position: absolute;
  width: 27px;
  z-index: 1;
}

.header-visual {
  align-items: center;
  align-self: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: 76px minmax(96px, 1fr);
  min-height: 64px;
}

.visual-card,
.visual-chart {
  border: 1px solid #d3deeb;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(24, 47, 79, 0.1);
  height: 64px;
}

.visual-card {
  background: #ffffff;
  display: grid;
  gap: 7px;
  padding: 12px;
}

.visual-card-primary {
  border-left: 5px solid #5b6b9e;
}

.visual-line {
  background: #c8d6e6;
  border-radius: 999px;
  display: block;
  height: 7px;
  width: 82%;
}

.visual-line.short {
  width: 56%;
}

.visual-total {
  align-self: end;
  color: #05294d;
  font-size: 1.15rem;
  font-weight: 900;
}

.visual-chart {
  align-items: end;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 246, 248, 0.96));
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 10px 12px;
}

.visual-chart span {
  background: linear-gradient(180deg, #5b6b9e, #8bb5d8);
  border-radius: 5px 5px 2px 2px;
  display: block;
  width: 11px;
}

.header-actions,
.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header-actions {
  border-top: 1px solid #e2e8f0;
  grid-column: 1 / -1;
  justify-content: flex-start;
  padding-top: 14px;
}

.fpa-public-intro {
  background:
    linear-gradient(135deg, rgba(5, 41, 77, 0.96), rgba(15, 85, 109, 0.92)),
    #05294d;
  color: #ffffff;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  min-height: 360px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 72px);
  position: relative;
}

body:not(.signed-out) .public-only,
body:not(.signed-out) .fpa-public-intro {
  display: none;
}

.fpa-public-intro::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
}

.fpa-intro-copy {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.fpa-intro-copy .eyebrow {
  color: #a9d8c4;
  margin-bottom: 12px;
}

.fpa-intro-copy h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 20px;
}

.fpa-intro-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
  max-width: 570px;
}

.fpa-flow-graphic {
  align-self: center;
  min-height: 260px;
  position: relative;
  z-index: 1;
}

.flow-node {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  color: #05294d;
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 64px;
  padding: 12px 16px;
  position: absolute;
  text-align: center;
  width: min(42%, 210px);
}

.flow-client {
  left: 0;
  top: 84px;
}

.flow-review {
  left: 32%;
  top: 16px;
}

.flow-needs {
  left: 34%;
  top: 162px;
}

.flow-portfolio {
  right: 0;
  top: 88px;
}

.flow-line {
  background: linear-gradient(90deg, rgba(169, 216, 196, 0.18), rgba(169, 216, 196, 0.9), rgba(169, 216, 196, 0.18));
  height: 3px;
  position: absolute;
  transform-origin: left center;
}

.line-a {
  left: 21%;
  top: 103px;
  transform: rotate(-20deg);
  width: 30%;
}

.line-b {
  left: 22%;
  top: 144px;
  transform: rotate(19deg);
  width: 31%;
}

.line-c {
  left: 54%;
  top: 127px;
  width: 30%;
}

.suite-home-link {
  background: #ffffff;
  border: 1px solid #bdc8d9;
  border-radius: 6px;
  color: #05294d;
  font-weight: 850;
  padding: 9px 11px;
  text-decoration: none;
  white-space: nowrap;
}

.role-control {
  gap: 4px;
  min-width: 190px;
}

body:not(.migration-review-mode) .role-control {
  display: none;
}

body.signed-out .layout,
body.signed-out #new-profile,
body.signed-out #logout-button {
  display: none;
}

body:not(.signed-out) .login-control {
  display: none;
}

.admin-tool-panel[hidden],
.internal-scaffold-panel[hidden] {
  display: none;
}

body.signed-out .app-header {
  min-height: 160px;
}

body.signed-out .login-control {
  align-self: end;
}

.login-control {
  align-items: end;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(170px, 220px) minmax(150px, 205px) auto;
}

.login-control label {
  gap: 4px;
}

.login-control span {
  color: #526074;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.login-control input {
  min-height: 34px;
  padding: 7px 10px;
}

.fpa-public-details {
  background: #ffffff;
  border-bottom: 1px solid #d9dee7;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.signed-out) .fpa-public-details {
  display: none;
}

.fpa-public-details article {
  background: #ffffff;
  border-right: 1px solid #e3e8f0;
  min-height: 170px;
  padding: 26px clamp(18px, 2.5vw, 34px);
}

.fpa-public-details article:last-child {
  border-right: 0;
}

.fpa-public-details span {
  color: #05294d;
  display: block;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fpa-public-details p {
  color: #526074;
  line-height: 1.5;
  margin-bottom: 0;
}

.role-control:has(#user-select) {
  min-width: 260px;
}

.role-control span {
  color: #526074;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.role-control select {
  padding: 7px 10px;
}

.eyebrow {
  color: #4b627f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 6px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: #05294d;
  font-size: clamp(1.9rem, 2.9vw, 3rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 0;
  white-space: nowrap;
}

.brand-subtitle {
  color: #344258;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0;
  margin: 4px 0 0;
  text-transform: uppercase;
}

.publisher-mark {
  color: #66758a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-pill {
  background: #e7f4ef;
  border: 1px solid #9bd0bd;
  border-radius: 999px;
  color: #126044;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 12px;
  white-space: nowrap;
}

.layout {
  display: flex;
  min-height: calc(100vh - 93px);
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  width: 100%;
}

.profile-nav {
  background: #202938;
  flex: 0 0 clamp(180px, 16vw, 220px);
  min-width: 0;
  padding: 16px;
}

.profile-search {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.profile-search label {
  color: #d8e0ed;
}

.profile-search input,
.profile-search select {
  background: #ffffff;
}

.profile-list {
  display: grid;
  gap: 6px;
}

.nav-empty {
  color: #d8e0ed;
  font-size: 0.9rem;
  margin: 0;
  padding: 10px;
}

.nav-item {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #d8e0ed;
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 4px;
  margin-bottom: 6px;
  padding: 12px;
  text-align: left;
  width: 100%;
}

.nav-item span {
  color: #aab6c8;
  font-size: 0.82rem;
}

.nav-item.active,
.nav-item:hover {
  background: #ffffff;
  color: #202938;
}

.nav-item.active span,
.nav-item:hover span {
  color: #526074;
}

.workspace {
  container-type: inline-size;
  display: grid;
  flex: 1 1 auto;
  gap: 18px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  margin: 0;
  max-width: none;
  min-width: 0;
  overflow-x: hidden;
  padding: clamp(14px, 2vw, 24px);
  width: auto;
}

body.fpa-constrained-pane .workspace {
  grid-template-columns: minmax(0, 1fr);
}

body.fpa-constrained-pane .app-header,
body.fpa-constrained-pane .fpa-public-intro,
body.fpa-constrained-pane .fpa-public-details,
body.fpa-constrained-pane .layout {
  max-width: var(--fpa-visible-width);
  width: var(--fpa-visible-width);
}

body.fpa-constrained-pane .profile-form,
body.fpa-constrained-pane .results {
  max-width: none;
}

body.fpa-constrained-pane .app-header {
  grid-template-columns: minmax(0, 1fr);
}

body.fpa-constrained-pane .header-visual {
  display: none;
}

body.fpa-constrained-pane .fpa-public-intro {
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 44px);
}

body.fpa-constrained-pane .fpa-intro-copy {
  max-width: 720px;
}

body.fpa-constrained-pane .fpa-intro-copy h2 {
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  max-width: 760px;
}

body.fpa-constrained-pane .fpa-flow-graphic {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
}

body.fpa-constrained-pane .flow-node {
  left: auto;
  min-height: 54px;
  position: relative;
  right: auto;
  top: auto;
  width: auto;
}

body.fpa-constrained-pane .flow-line {
  display: none;
}

body.fpa-constrained-pane .fpa-public-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.fpa-constrained-pane .fpa-public-details article {
  min-height: 0;
}

.results {
  overflow: hidden;
}

.profile-form,
.results,
.snapshot-panel,
.launch-grid,
.launch-card,
.snapshot-card,
.permission-card {
  min-width: 0;
}

.results > .snapshot-panel {
  max-width: 100%;
}

.profile-form,
.results {
  background: #ffffff;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  min-width: 0;
  padding: 20px;
}

.section-heading p {
  color: #5c6a7c;
  margin-bottom: 10px;
}

.section-heading.tight {
  margin-top: 20px;
}

.field-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

label {
  color: #344258;
  display: grid;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 6px;
  min-width: 0;
}

input,
select,
textarea {
  border: 1px solid #bbc5d3;
  border-radius: 6px;
  font: inherit;
  min-width: 0;
  overflow: hidden;
  padding: 9px 10px;
  text-overflow: ellipsis;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2668d9;
  outline: 3px solid #d9e7ff;
}

textarea {
  resize: vertical;
}

.notes-field {
  margin-top: 12px;
}

.primary-action,
.secondary-action {
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 11px 16px;
}

.primary-action {
  background: #2668d9;
  border: 0;
  color: #ffffff;
}

.primary-action.compact {
  margin: 0;
  padding: 8px 12px;
}

.secondary-action.compact-report {
  padding: 8px 10px;
}

.secondary-action {
  background: #ffffff;
  border: 1px solid #bbc5d3;
  color: #344258;
}

.button-row {
  margin-top: 18px;
}

#workflow-status,
.assignment-editor output {
  align-self: center;
  color: #0f5c47;
  font-size: 0.88rem;
  font-weight: 800;
  min-height: 1.2rem;
}

.launch-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

.launch-card,
.snapshot-link,
.snapshot-card,
.permission-card {
  border: 1px solid #d9dee7;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.assignment-card {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-preview-card {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-preview-card .secondary-action {
  justify-self: end;
  text-decoration: none;
}

.site-content-row {
  align-items: center;
  border-top: 1px solid #e2e8f0;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-top: 7px;
}

.site-content-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.assignment-card.active-assignment {
  border-color: #2467d8;
  box-shadow: inset 3px 0 0 #2467d8;
}

.snapshot-card details {
  border-top: 1px solid #e2e8f0;
  padding-top: 6px;
}

.snapshot-card summary {
  color: #24364b;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.snapshot-card pre {
  background: #f6f7f9;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  font-size: 0.78rem;
  margin: 8px 0 0;
  max-height: 220px;
  overflow: auto;
  padding: 10px;
  white-space: pre-wrap;
  word-break: break-word;
}

.launch-card {
  color: inherit;
  text-decoration: none;
}

.launch-card:hover,
.snapshot-link:hover {
  border-color: #2668d9;
}

.snapshot-link {
  background: #f0f5ff;
  color: #174ea6;
  font-size: 0.9rem;
  font-weight: 700;
  justify-self: start;
  padding: 8px 10px;
  text-decoration: none;
}

.snapshot-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.launch-card span,
.snapshot-card span,
.permission-card span {
  color: #5c6a7c;
  font-size: 0.84rem;
}

.snapshot-panel {
  border-top: 1px solid #d9dee7;
  padding-top: 18px;
}

.panel-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.panel-heading h3 {
  margin-bottom: 0;
}

.panel-heading select {
  max-width: 180px;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.snapshot-card,
.permission-card {
  margin-bottom: 10px;
}

.inline-form {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.assignment-tools {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1.4fr) minmax(120px, 0.8fr) minmax(140px, 1fr);
  margin-bottom: 12px;
}

.assignment-editor {
  background: #f6f7f9;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-bottom: 14px;
  padding: 12px;
}

.assignment-editor .secondary-action {
  align-self: end;
  justify-self: start;
  white-space: nowrap;
}

.inline-status {
  color: #526074;
  font-size: 0.88rem;
  margin: 8px 0 0;
}

.admin-crud-form {
  background: #f6f7f9;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 10px;
  padding: 12px;
}

.admin-crud-form:has([name="email"]) {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.admin-crud-form .secondary-action {
  align-self: end;
}

.site-config-form {
  background: #f6f7f9;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-bottom: 10px;
  padding: 12px;
}

.site-content-field {
  grid-column: 1 / -1;
}

.site-config-form .secondary-action {
  align-self: end;
}

.lead-card {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) minmax(130px, auto);
}

.permission-card.muted {
  background: #f6f7f9;
}

.muted {
  color: #64748b;
}

.small {
  font-size: 0.84rem;
}

code {
  background: #f1f5f9;
  border: 1px solid #d9dee7;
  border-radius: 4px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  padding: 0.05rem 0.25rem;
}

.sso-provider-card {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.sso-provider-card .secondary-action {
  justify-self: end;
}

.status-text {
  color: #5c6a7c;
  font-size: 0.84rem;
}

.report-list {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.report-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.report-row span {
  color: #344258;
}

.report-row strong {
  color: #19202a;
}

.filter-rule {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto auto minmax(120px, 0.5fr);
}

.filter-rule label {
  align-items: center;
  display: flex;
  gap: 6px;
}

.filter-rule input[type="checkbox"] {
  width: auto;
}

.demo-profile-card {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.5fr) auto;
}

.demo-profile-card label {
  align-items: center;
  display: flex;
  gap: 6px;
}

.demo-profile-card input[type="checkbox"] {
  width: auto;
}

.empty-results {
  color: #5c6a7c;
  margin-bottom: 0;
}

@media (max-width: 1280px) {
  .workspace {
    grid-template-columns: 1fr;
  }
}

@container (max-width: 1120px) {
  .workspace {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .fpa-public-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fpa-public-intro {
    grid-template-columns: 1fr;
  }

  .fpa-flow-graphic {
    min-height: 300px;
  }

  .workspace {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .profile-nav {
    display: grid;
    flex-basis: auto;
    gap: 8px;
    width: 100%;
  }

  .profile-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .profile-list .nav-item {
    min-width: 220px;
  }
}

@media (max-width: 720px) {
  .workspace {
    padding-left: 12px;
    padding-right: 12px;
  }

  .profile-form,
  .results {
    max-width: calc(100vw - 24px);
  }

  .app-header {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand-lockup {
    align-items: flex-start;
  }

  h1 {
    white-space: normal;
  }

  .header-visual {
    display: none;
  }

  .fpa-public-intro {
    padding-bottom: 42px;
  }

  .fpa-public-details {
    grid-template-columns: 1fr;
  }

  .fpa-public-details article {
    border-right: 0;
    border-bottom: 1px solid #e3e8f0;
    min-height: 0;
  }

  .fpa-flow-graphic {
    min-height: 390px;
  }

  .flow-node {
    left: 0;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .flow-node + .flow-node {
    margin-top: 12px;
  }

  .flow-line {
    display: none;
  }

  .header-actions,
  .inline-form,
  .assignment-tools,
  .assignment-editor,
  .field-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .panel-actions {
    justify-content: flex-start;
  }

  .panel-heading select {
    max-width: none;
  }

  .filter-rule {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .demo-profile-card {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .sso-provider-card {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .sso-provider-card .secondary-action {
    justify-self: stretch;
  }

  .site-preview-card {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .site-preview-card .secondary-action {
    justify-self: stretch;
    text-align: center;
  }
}
