:root {
  --ll-studio-bg: #111417;
  --ll-studio-rail: #15181c;
  --ll-studio-surface: #1d2024;
  --ll-studio-surface-2: #24272d;
  --ll-studio-surface-3: #2d3138;
  --ll-studio-field: #14171b;
  --ll-studio-line: #3a3d46;
  --ll-studio-line-soft: #2a2e35;
  --ll-studio-text: #f4f5f7;
  --ll-studio-muted: #a5a9b1;
  --ll-studio-quiet: #777d88;
  --ll-studio-primary: #9189ff;
  --ll-studio-primary-strong: #a89fff;
  --ll-studio-success: #2ed68d;
  --ll-studio-warning: #e7b85c;
  --ll-studio-danger: #ef6f84;
  --ll-studio-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --ll-studio-radius: 8px;
  --ll-studio-radius-lg: 10px;
  --ll-studio-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-leftlink-studio],
.ll-studio {
  color-scheme: dark;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ll-studio-text);
  background: var(--ll-studio-bg);
  font: 14px/1.45 var(--ll-studio-font);
}

[data-leftlink-studio].ll-theme-light,
.ll-studio.ll-theme-light {
  color-scheme: light;
  --ll-studio-bg: #f4f5f7;
  --ll-studio-rail: #ffffff;
  --ll-studio-surface: #ffffff;
  --ll-studio-surface-2: #f7f7fa;
  --ll-studio-surface-3: #eceef4;
  --ll-studio-field: #ffffff;
  --ll-studio-line: #d7dae2;
  --ll-studio-line-soft: #e5e7ee;
  --ll-studio-text: #16191e;
  --ll-studio-muted: #5f6672;
  --ll-studio-quiet: #7a818d;
  --ll-studio-primary: #6258df;
  --ll-studio-primary-strong: #4f46c8;
  --ll-studio-success: #12885c;
  --ll-studio-warning: #9d6a13;
  --ll-studio-danger: #b33d53;
  --ll-studio-shadow: 0 18px 46px rgba(25, 30, 40, 0.10);
}

[data-leftlink-studio] *,
[data-leftlink-studio] *::before,
[data-leftlink-studio] *::after,
.ll-studio *,
.ll-studio *::before,
.ll-studio *::after {
  box-sizing: border-box;
}

[data-leftlink-studio] button,
[data-leftlink-studio] input,
[data-leftlink-studio] select,
[data-leftlink-studio] textarea,
.ll-studio button,
.ll-studio input,
.ll-studio select,
.ll-studio textarea {
  font: inherit;
}

[data-leftlink-studio] button,
.ll-studio button {
  border: 1px solid var(--ll-studio-line);
  color: var(--ll-studio-text);
  background: var(--ll-studio-surface-2);
  cursor: pointer;
}

[data-leftlink-studio] button:hover,
.ll-studio button:hover {
  border-color: var(--ll-studio-primary);
}

[data-leftlink-studio] a,
.ll-studio a {
  color: inherit;
  text-decoration: none;
}

[data-leftlink-studio] p,
[data-leftlink-studio] h1,
[data-leftlink-studio] h2,
[data-leftlink-studio] h3,
.ll-studio p,
.ll-studio h1,
.ll-studio h2,
.ll-studio h3 {
  margin: 0;
}

.ll-studio-visually-hidden,
.ll-studio-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.ll-studio-shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  min-height: 100vh;
  transition: grid-template-columns 160ms ease;
}

.ll-studio-shell.is-rail-collapsed {
  grid-template-columns: 78px minmax(0, 1fr);
}

.ll-studio-rail {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100vh;
  padding: 22px 16px;
  background: var(--ll-studio-rail);
  border-right: 1px solid var(--ll-studio-line-soft);
}

.ll-studio-main {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  padding: 28px;
}

.ll-studio-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
}

.ll-studio-brand img {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--ll-studio-surface);
  object-fit: cover;
}

.ll-studio-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ll-studio-brand-copy strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ll-studio-brand-copy span {
  overflow: hidden;
  color: var(--ll-studio-muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ll-studio-rail-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--ll-studio-line-soft);
  border-radius: var(--ll-studio-radius);
  padding: 0 12px;
  color: var(--ll-studio-muted);
  background: var(--ll-studio-surface);
}

.ll-studio-rail-toggle:hover,
.ll-studio-rail-toggle:focus-visible {
  color: var(--ll-studio-text);
  border-color: color-mix(in srgb, var(--ll-studio-primary) 38%, var(--ll-studio-line-soft));
  background: var(--ll-studio-surface-2);
}

.ll-studio-rail-toggle-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 5px;
}

.ll-studio-rail-toggle-icon::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 5px;
  width: 1.5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

.ll-studio-rail-toggle-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 4px;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.ll-studio-shell.is-rail-collapsed .ll-studio-rail-toggle-icon::after {
  right: auto;
  left: 4px;
  transform: rotate(225deg);
}

.ll-studio-nav,
.ll-studio-system-nav {
  display: grid;
  gap: 4px;
}

.ll-studio-nav a,
.ll-studio-system-nav a,
.ll-studio-system-nav summary {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border-radius: var(--ll-studio-radius);
  padding: 0 12px;
  color: var(--ll-studio-muted);
  font-weight: 780;
}

.ll-studio-system-nav summary {
  color: var(--ll-studio-quiet);
  font-size: 12px;
  text-transform: uppercase;
  list-style: none;
}

.ll-studio-nav-icon {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  color: var(--ll-studio-text);
  background: color-mix(in srgb, var(--ll-studio-primary) 18%, var(--ll-studio-surface-3));
  font-size: 11px;
  font-weight: 860;
  line-height: 1;
}

.ll-studio-system-nav summary::-webkit-details-marker {
  display: none;
}

.ll-studio-nav a:hover,
.ll-studio-system-nav a:hover,
.ll-studio-nav a.is-active {
  color: var(--ll-studio-text);
  background: var(--ll-studio-surface-2);
}

.ll-studio-nav a.is-active {
  box-shadow: inset 3px 0 0 var(--ll-studio-primary);
}

.ll-studio-shell.is-rail-collapsed .ll-studio-brand-copy,
.ll-studio-shell.is-rail-collapsed .ll-studio-rail-toggle-label,
.ll-studio-shell.is-rail-collapsed .ll-studio-nav-label,
.ll-studio-shell.is-rail-collapsed .ll-studio-system-nav,
.ll-studio-shell.is-rail-collapsed .ll-studio-status span:not(.ll-studio-status-dot) {
  display: none;
}

.ll-studio-shell.is-rail-collapsed .ll-studio-rail,
.ll-studio-shell.is-rail-collapsed .ll-studio-brand,
.ll-studio-shell.is-rail-collapsed .ll-studio-rail-toggle,
.ll-studio-shell.is-rail-collapsed .ll-studio-nav a,
.ll-studio-shell.is-rail-collapsed .ll-studio-status {
  align-items: center;
  justify-content: center;
}

.ll-studio-shell.is-rail-collapsed .ll-studio-rail-toggle,
.ll-studio-shell.is-rail-collapsed .ll-studio-nav a,
.ll-studio-shell.is-rail-collapsed .ll-studio-status {
  width: 42px;
  min-height: 42px;
  padding-right: 0;
  padding-left: 0;
}

.ll-studio-shell.is-rail-collapsed .ll-studio-brand img {
  width: 42px;
  height: 42px;
}

.ll-studio-shell.is-rail-collapsed .ll-studio-nav a {
  overflow: hidden;
}

.ll-studio-panel,
.ll-studio-card,
.ll-studio-create,
.ll-studio-filter-table {
  border: 1px solid var(--ll-studio-line-soft);
  border-radius: var(--ll-studio-radius-lg);
  background: var(--ll-studio-surface);
  box-shadow: var(--ll-studio-shadow);
}

.ll-studio-create {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.ll-studio-create-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ll-studio-create-heading p,
.ll-studio-muted,
.ll-studio-field > span,
.ll-studio-card p {
  color: var(--ll-studio-muted);
}

.ll-studio-label,
.ll-studio-field > span {
  color: var(--ll-studio-muted);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ll-studio-create-grid,
.ll-studio-filter-row,
.ll-studio-two-up,
.ll-studio-three-up,
.ll-studio-expanded-grid {
  display: grid;
  gap: 12px;
}

.ll-studio-create-grid {
  grid-template-columns: minmax(280px, 2fr) minmax(160px, 0.8fr) 250px 132px;
  align-items: end;
}

.ll-studio-filter-row {
  grid-template-columns: minmax(260px, 1.8fr) minmax(170px, 0.7fr) minmax(160px, 0.6fr) auto;
  align-items: end;
}

.ll-studio-two-up {
  grid-template-columns: 1fr 1fr;
}

.ll-studio-three-up,
.ll-studio-expanded-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ll-studio-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.ll-studio-input,
.ll-studio-select,
.ll-studio-textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--ll-studio-line);
  border-radius: var(--ll-studio-radius);
  padding: 0 12px;
  color: var(--ll-studio-text);
  background: var(--ll-studio-field);
  outline: none;
}

.ll-studio-textarea {
  min-height: 88px;
  padding-top: 10px;
  resize: vertical;
}

.ll-studio-input:focus,
.ll-studio-select:focus,
.ll-studio-textarea:focus {
  border-color: var(--ll-studio-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ll-studio-primary) 18%, transparent);
}

.ll-studio-button,
.ll-studio-button-primary,
.ll-studio-button-secondary,
.ll-studio-tabs button,
.ll-studio-action-icon {
  min-height: 38px;
  border-radius: var(--ll-studio-radius);
  padding: 0 13px;
  font-weight: 780;
}

.ll-studio-button-primary {
  border-color: var(--ll-studio-primary);
  color: #ffffff;
  background: var(--ll-studio-primary);
}

.ll-studio-button-secondary,
.ll-studio-button {
  color: var(--ll-studio-text);
  background: var(--ll-studio-surface-2);
}

.ll-studio-segmented {
  display: flex;
  min-height: 40px;
  padding: 3px;
  border: 1px solid var(--ll-studio-line);
  border-radius: var(--ll-studio-radius);
  background: var(--ll-studio-field);
}

.ll-studio-segmented button {
  flex: 1;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--ll-studio-muted);
  background: transparent;
}

.ll-studio-segmented button.is-active {
  color: var(--ll-studio-text);
  background: var(--ll-studio-surface-3);
}

.ll-studio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ll-studio-tabs button {
  color: var(--ll-studio-muted);
  background: var(--ll-studio-surface-2);
}

.ll-studio-tabs button.is-active {
  border-color: var(--ll-studio-primary);
  color: var(--ll-studio-text);
  background: color-mix(in srgb, var(--ll-studio-primary) 20%, var(--ll-studio-surface-2));
}

.ll-studio-filter-table {
  overflow: hidden;
}

.ll-studio-filter-bar {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--ll-studio-line-soft);
}

.ll-studio-table-wrap {
  overflow-x: auto;
}

.ll-studio-table {
  width: 100%;
  min-width: 1020px;
  border-collapse: collapse;
  table-layout: fixed;
}

.ll-studio-table th,
.ll-studio-table td {
  padding: 12px;
  border-bottom: 1px solid var(--ll-studio-line-soft);
  text-align: left;
  vertical-align: middle;
}

.ll-studio-table th {
  color: var(--ll-studio-muted);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ll-studio-row-summary {
  cursor: pointer;
}

.ll-studio-row-summary:hover td,
.ll-studio-row-summary.is-selected td {
  background: color-mix(in srgb, var(--ll-studio-primary) 7%, transparent);
}

.ll-studio-target {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  max-width: 100%;
}

.ll-studio-target > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.ll-studio-target strong,
.ll-studio-target a,
.ll-studio-rank strong,
.ll-studio-mobile-link strong,
.ll-studio-mobile-link p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ll-studio-target a,
.ll-studio-mobile-link p {
  color: var(--ll-studio-muted);
}

.ll-studio-snapshot {
  position: relative;
  display: block;
  width: 78px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--ll-studio-line);
  border-radius: var(--ll-studio-radius);
  background: var(--ll-studio-surface-3);
}

.ll-studio-snapshot.is-wide {
  width: 138px;
  aspect-ratio: 16 / 10;
}

.ll-studio-snapshot-label {
  position: absolute;
  right: 6px;
  bottom: 6px;
  padding: 2px 5px;
  border-radius: 5px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 760;
}

.ll-studio-short-copy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 30px;
  border: 1px solid var(--ll-studio-line);
  border-radius: 4px;
  padding: 0 9px;
  color: var(--ll-studio-primary-strong);
  background: var(--ll-studio-field);
  font-weight: 820;
  text-align: left;
}

.ll-studio-short-copy:hover {
  border-color: color-mix(in srgb, var(--ll-studio-primary) 60%, var(--ll-studio-line));
  background: color-mix(in srgb, var(--ll-studio-primary) 10%, transparent);
}

.ll-studio-short-copy.is-copied,
.ll-studio-action-icon.is-copied {
  border-color: var(--ll-studio-success);
  color: var(--ll-studio-success);
  background: color-mix(in srgb, var(--ll-studio-success) 12%, transparent);
}

.ll-studio-copy-state {
  display: none;
  color: var(--ll-studio-success);
  font-size: 11px;
}

.ll-studio-short-copy.is-copied .ll-studio-copy-state {
  display: inline;
}

.ll-studio-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.ll-studio-chip {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  border: 1px solid var(--ll-studio-line-soft);
  border-radius: 4px;
  padding: 0 7px;
  color: var(--ll-studio-muted);
  background: var(--ll-studio-surface-2);
  font-size: 11px;
  font-weight: 720;
  cursor: pointer;
}

.ll-studio-chip.is-strong {
  color: var(--ll-studio-text);
  border-color: color-mix(in srgb, var(--ll-studio-primary) 45%, var(--ll-studio-line));
}

.ll-studio-chip.is-tree {
  border-color: color-mix(in srgb, var(--ll-studio-success) 38%, var(--ll-studio-line));
  color: var(--ll-studio-success);
}

.ll-studio-metric {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.ll-studio-metric strong {
  font-size: 16px;
}

.ll-studio-metric-secondary,
.ll-studio-latest-inline,
.ll-studio-delta {
  font-size: 12px;
  font-weight: 720;
}

.ll-studio-metric-secondary,
.ll-studio-latest-inline {
  color: var(--ll-studio-muted);
}

.ll-studio-delta.is-positive {
  color: var(--ll-studio-success);
}

.ll-studio-delta.is-neutral {
  color: var(--ll-studio-warning);
}

.ll-studio-realtime {
  display: grid;
  gap: 6px;
  min-width: 126px;
}

.ll-studio-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--ll-studio-success) 40%, var(--ll-studio-line));
  border-radius: 999px;
  padding: 0 9px;
  color: var(--ll-studio-success);
  background: color-mix(in srgb, var(--ll-studio-success) 9%, transparent);
  font-size: 12px;
  font-weight: 820;
}

.ll-studio-pill.is-muted {
  color: var(--ll-studio-muted);
  border-color: var(--ll-studio-line);
  background: var(--ll-studio-surface-2);
}

.ll-studio-spark {
  display: flex;
  align-items: end;
  gap: 3px;
  width: 96px;
  height: 28px;
}

.ll-studio-spark i {
  width: 8px;
  min-height: 4px;
  border-radius: 4px 4px 0 0;
  background: var(--ll-studio-primary);
}

.ll-studio-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
  min-width: 132px;
}

.ll-studio-action-icon {
  display: grid;
  place-items: center;
  width: 38px;
  min-width: 38px;
  padding: 0;
  border-radius: 4px;
  background: var(--ll-studio-surface-2);
  cursor: pointer;
  transition:
    border-color 140ms ease,
    color 140ms ease,
    background-color 140ms ease,
    transform 140ms ease;
}

.ll-studio-action-icon:hover,
.ll-studio-action-icon:focus-visible {
  border-color: color-mix(in srgb, var(--ll-studio-primary) 70%, var(--ll-studio-line));
  color: var(--ll-studio-text);
  background: color-mix(in srgb, var(--ll-studio-primary) 15%, var(--ll-studio-surface-2));
  transform: translateY(-1px);
  outline: none;
}

.ll-studio-row-detail {
  display: none;
}

.ll-studio-row-detail.is-open {
  display: table-row;
}

.ll-studio-row-detail td {
  padding: 0;
  background: var(--ll-studio-surface);
}

.ll-studio-row-expansion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--ll-studio-line-soft);
}

.ll-studio-expanded-editor,
.ll-studio-expanded-insights {
  border: 1px solid var(--ll-studio-line-soft);
  border-radius: var(--ll-studio-radius);
  background: var(--ll-studio-surface-2);
}

.ll-studio-expanded-editor {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.ll-studio-expanded-insights {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
}

.ll-studio-table-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  gap: 14px;
  align-items: center;
  padding: 13px 18px;
  border-top: 1px solid var(--ll-studio-line-soft);
  background: var(--ll-studio-surface-2);
}

.ll-studio-mobile-header,
.ll-studio-mobile-bottom-nav,
.ll-studio-mobile-list {
  display: none;
}

.ll-studio-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px;
  border: 1px solid var(--ll-studio-line-soft);
  border-radius: var(--ll-studio-radius);
  color: var(--ll-studio-muted);
  background: var(--ll-studio-surface);
}

.ll-studio-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ll-studio-success);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--ll-studio-success) 18%, transparent);
}

@media (max-width: 1180px) {
  .ll-studio-create-grid,
  .ll-studio-filter-row,
  .ll-studio-two-up,
  .ll-studio-three-up,
  .ll-studio-expanded-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ll-studio-row-expansion {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .ll-studio-shell {
    display: block;
    min-height: 100vh;
    padding-bottom: 74px;
  }

  .ll-studio-rail {
    display: none;
  }

  .ll-studio-main {
    gap: 14px;
    padding: 14px;
  }

  .ll-studio-mobile-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--ll-studio-line-soft);
    background: color-mix(in srgb, var(--ll-studio-bg) 92%, transparent);
    backdrop-filter: blur(16px);
  }

  .ll-studio-create-grid,
  .ll-studio-filter-row,
  .ll-studio-two-up,
  .ll-studio-three-up,
  .ll-studio-expanded-grid {
    grid-template-columns: 1fr;
  }

  .ll-studio-table-wrap {
    display: none;
  }

  .ll-studio-mobile-list {
    display: grid;
    gap: 10px;
    padding: 14px;
  }

  .ll-studio-mobile-link {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--ll-studio-line-soft);
    border-radius: var(--ll-studio-radius-lg);
    background: var(--ll-studio-surface-2);
  }

  .ll-studio-mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 62px;
    border-top: 1px solid var(--ll-studio-line-soft);
    background: color-mix(in srgb, var(--ll-studio-bg) 94%, transparent);
    backdrop-filter: blur(16px);
  }

  .ll-studio-mobile-bottom-nav a {
    display: grid;
    place-items: center;
    color: var(--ll-studio-muted);
    font-size: 12px;
    font-weight: 820;
  }

  .ll-studio-mobile-bottom-nav a.is-active {
    color: var(--ll-studio-primary-strong);
  }
}

@media (max-width: 560px) {
  .ll-studio-create,
  .ll-studio-filter-bar,
  .ll-studio-panel,
  .ll-studio-card {
    padding: 14px;
  }

  .ll-studio-mobile-link {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .ll-studio-mobile-link button {
    grid-column: 1 / -1;
  }
}
