:root {
  --primary: #543295;
  --primary-2: #7a3b8e;
  --ink: #241d2d;
  --muted: #6f6679;
  --soft: #f7f5fb;
  --panel: #ffffff;
  --line: #e7e0ef;
  --good: #16875d;
  --good-soft: #e8f6ef;
  --warn: #b76b00;
  --warn-soft: #fff3df;
  --risk: #c63f3f;
  --risk-soft: #fff0f0;
  --shadow: 0 18px 42px rgba(44, 31, 63, 0.10);
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfaff 0%, #f4f1f8 100%);
}

[hidden] {
  display: none !important;
}

button,
input,
textarea,
select {
  font: inherit;
}

#login-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(36, 29, 45, 0.92), rgba(84, 50, 149, 0.78)),
    url("assets/cvs-governance.png") center/cover no-repeat;
}

.login-card {
  width: min(390px, 100%);
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.login-logo {
  width: 56px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.login-card h1 {
  margin-bottom: 0.4rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.login-subtitle,
.login-hint,
.login-status {
  color: var(--muted);
}

.login-subtitle {
  margin-bottom: 1.35rem;
}

.login-hint,
.login-status {
  min-height: 1.2em;
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 1rem;
  color: #1e1827;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 38px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a.active,
.nav a:hover {
  color: var(--primary);
  background: #f4eff9;
  border-color: #e4d8ef;
}

.session-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.user-chip {
  max-width: 180px;
  overflow: hidden;
  padding: 0.35rem 0.65rem;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #f4eff9;
  border: 1px solid #e4d8ef;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.logout-btn svg {
  width: 18px;
  height: 18px;
}

.app-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.4rem 0 2.4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.3rem, 2vw, 2rem);
  color: #fff;
  background: #25173f;
  border-radius: var(--radius);
  min-height: 250px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 23, 63, 0.98), rgba(84, 50, 149, 0.76)), var(--hero-image, none) center/cover no-repeat;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: #dacded;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.07;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #eee8f7;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 0.68rem 0.95rem;
  color: #fff;
  background: var(--primary);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.secondary {
  color: var(--primary);
  background: #fff;
  border-color: #d9cde9;
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.score-panel,
.panel,
.form-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.score-panel {
  padding: 1.1rem;
  display: grid;
  align-content: center;
}

.score-gauge {
  width: 190px;
  height: 190px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--primary) calc(var(--score) * 1%), #ece6f3 0);
}

.score-inner {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  text-align: center;
}

.score-inner strong {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary);
}

.score-inner span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
}

.score-panel p {
  color: var(--muted);
  line-height: 1.48;
  text-align: center;
  margin-bottom: 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.kpi {
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.kpi label {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.kpi strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  margin-top: 0.35rem;
}

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

.panel {
  padding: 1rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.panel h2 {
  margin-bottom: 0.25rem;
  font-size: 1.08rem;
}

.panel p {
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.dimension-bars {
  display: grid;
  gap: 0.9rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 150px 1fr 42px;
  gap: 0.8rem;
  align-items: center;
}

.bar-row label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.track {
  height: 12px;
  overflow: hidden;
  background: #efeaf6;
  border-radius: 999px;
}

.fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.fill.good,
.fill.healthy {
  background: linear-gradient(90deg, #16875d, #40a977);
}

.fill.watch {
  background: linear-gradient(90deg, #b76b00, #e1a23e);
}

.fill.risk {
  background: linear-gradient(90deg, #c63f3f, #de6b6b);
}

.bar-row strong {
  text-align: right;
  color: var(--primary);
}

.list {
  display: grid;
  gap: 0.7rem;
}

.list-item {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.list-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.list-item span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.executive-review {
  border: 1px solid rgba(84, 50, 149, 0.22);
  background: linear-gradient(180deg, rgba(84, 50, 149, 0.055), #ffffff 52%);
}

.executive-headline {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.45;
  max-width: 980px;
}

.confidence-badge {
  background: rgba(84, 50, 149, 0.1);
  border: 1px solid rgba(84, 50, 149, 0.18);
  border-radius: 999px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 750;
  padding: 0.4rem 0.7rem;
  white-space: nowrap;
}

.confidence-note {
  border-left: 3px solid rgba(84, 50, 149, 0.35);
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.75rem;
  padding-left: 0.75rem;
}

.ai-readout {
  display: grid;
  gap: 0.9rem;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.ai-grid > div,
.next-steps,
.email-draft {
  padding: 0.85rem;
  background: #fbfafc;
  border: 1px solid #efe8f5;
  border-radius: 6px;
}

.ai-readout label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ai-readout p,
.next-steps li {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.next-steps ul {
  margin: 0;
  padding-left: 1.1rem;
}

.email-draft {
  display: grid;
  gap: 0.55rem;
}

.email-draft input,
.email-draft textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: #fff;
}

.email-draft textarea {
  min-height: 190px;
  resize: vertical;
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 1rem;
}

.delta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.delta.positive {
  color: var(--good);
  background: var(--good-soft);
}

.delta.negative {
  color: var(--risk);
  background: var(--risk-soft);
}

.trend-chart {
  width: 100%;
  min-height: 170px;
}

.trend-chart line {
  stroke: #e5dced;
  stroke-width: 1.5;
}

.trend-chart path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-chart circle {
  fill: #fff;
  stroke: var(--primary);
  stroke-width: 3;
}

.trend-chart text {
  fill: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-tabs,
.segmented {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: #f3edf8;
  border: 1px solid #e5dced;
  border-radius: 8px;
}

.mini-tabs {
  margin-bottom: 0.85rem;
}

.mini-tabs button,
.segmented button {
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.mini-tabs button.active,
.segmented button.active {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 6px 18px rgba(44, 31, 63, 0.08);
}

.scope-bars {
  display: grid;
  gap: 0.75rem;
}

.scope-bar {
  display: grid;
  grid-template-columns: minmax(150px, 0.95fr) minmax(120px, 1fr) 42px;
  gap: 0.7rem;
  align-items: center;
}

.scope-bar strong,
.scope-bar span {
  display: block;
}

.scope-bar strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
}

.scope-bar span {
  color: var(--muted);
  font-size: 0.76rem;
}

.scope-bar b {
  color: var(--primary);
  text-align: right;
}

.readout-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.9rem;
}

.pager {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.pager .button {
  min-height: 34px;
  padding: 0.4rem 0.65rem;
}

.accordion-list {
  display: grid;
  gap: 0.75rem;
}

.readout-accordion {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.readout-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  list-style: none;
}

.readout-accordion summary::-webkit-details-marker {
  display: none;
}

.readout-accordion summary strong,
.readout-accordion summary small {
  display: block;
}

.readout-accordion summary strong {
  font-size: 0.98rem;
}

.readout-accordion summary small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 0.2rem;
}

.readout-score {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.readout-score.good,
.readout-score.healthy {
  background: var(--good);
}

.readout-score.watch {
  background: var(--warn);
}

.readout-score.risk {
  background: var(--risk);
}

.readout-body {
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem 1rem;
}

.compact-dimensions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.compact-dimensions > div {
  display: grid;
  gap: 0.4rem;
  padding: 0.75rem;
  background: #fbfafc;
  border: 1px solid #efe8f5;
  border-radius: 6px;
}

.compact-dimensions label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.compact-dimensions b {
  color: var(--primary);
  font-size: 0.92rem;
}

.readout-responses {
  display: grid;
  gap: 0.55rem;
}

.readout-responses article {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid #f0ebf5;
  border-radius: 6px;
}

.readout-responses strong,
.readout-responses span {
  display: block;
}

.readout-responses span {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

.readout-responses .actions {
  margin-top: 0;
}

.empty.compact {
  padding: 1.2rem;
}

.risk {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 0.6rem;
}

.risk.promoter,
.risk.healthy {
  color: var(--good);
  background: var(--good-soft);
}

.risk.soft_risk,
.risk.high_risk {
  color: var(--warn);
  background: var(--warn-soft);
}

.risk.critical {
  color: var(--risk);
  background: var(--risk-soft);
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

th {
  color: var(--muted);
  font-size: 0.72rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 0.7rem;
  border-bottom: 1px solid var(--line);
}

td {
  padding: 0.9rem 0.7rem;
  border-bottom: 1px solid #f0ebf5;
  vertical-align: top;
  font-size: 0.9rem;
}

.client-form {
  width: min(900px, calc(100% - 28px));
  margin: 1rem auto 2rem;
}

.form-hero {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-hero img {
  display: block;
  width: 100%;
  max-height: 290px;
  object-fit: cover;
}

.form-copy {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.form-copy h1 {
  color: var(--ink);
}

.form-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.form-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-top: 1rem;
}

.question {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.question:last-child {
  border-bottom: 0;
}

.question label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.rating {
  display: grid;
  grid-template-columns: repeat(5, minmax(44px, 1fr));
  gap: 0.5rem;
}

.rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--primary);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.rating input:checked + span,
.rating span:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field label {
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.link-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.link-form .field:nth-of-type(6),
.link-form .actions {
  grid-column: 1 / -1;
}

.generated-link {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.85rem;
  background: #fbfafc;
  border: 1px solid #efe8f5;
  border-radius: 6px;
}

.generated-link code {
  overflow: auto;
  padding: 0.65rem;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.84rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1rem;
}

.notice {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.success-box {
  padding: 1rem;
  margin-top: 1rem;
  color: var(--good);
  background: var(--good-soft);
  border: 1px solid #c9eadb;
  border-radius: 6px;
  font-weight: 800;
}

.success-box strong,
.success-box span {
  display: block;
}

.success-box span {
  margin-top: 0.35rem;
  font-weight: 600;
  line-height: 1.5;
}

.success-box.confirmation {
  padding: 1.25rem;
  font-size: 1rem;
}

.success-box.warning {
  color: var(--warn);
  background: var(--warn-soft);
  border-color: #f2d8ac;
}

.loading,
.empty {
  padding: 3rem 1rem;
  color: var(--muted);
  text-align: center;
}

.restricted-panel {
  width: min(520px, 100%);
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.restricted-panel img {
  width: 54px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.restricted-panel h1 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
}

.restricted-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 0.55rem;
  border: 2px solid #e2d8ee;
  border-top-color: var(--primary);
  border-radius: 50%;
  vertical-align: middle;
  animation: spin 0.8s linear infinite;
}

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

.footer {
  padding: 1rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .topbar {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .session-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .hero,
  .dashboard-grid,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  .compact-dimensions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bar-row strong {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .app-shell {
    width: min(100% - 20px, 1320px);
  }

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

  .rating {
    grid-template-columns: repeat(5, 1fr);
  }

  .hero-copy {
    min-height: 300px;
  }

  .readout-toolbar,
  .readout-responses article {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented,
  .mini-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .pager {
    justify-content: space-between;
    width: 100%;
  }

  .compact-dimensions,
  .scope-bar,
  .link-form {
    grid-template-columns: 1fr;
  }

  .link-form .field:nth-of-type(6),
  .link-form .actions {
    grid-column: auto;
  }

  .scope-bar b {
    text-align: left;
  }
}
