/*
 * Lusty Looters admin v488
 * Polished Staff IDs workspace.
 * Scoped to the Staff IDs page and loaded after the shared admin system.
 */

html body.ll-admin-shell.admin-staff-ids-page {
  --staff-blue: #5fa1ff;
  --staff-blue-strong: #2f89ff;
  --staff-green: #55e68c;
  --staff-gold: #f7c66b;
  --staff-orange: #ff9d5c;
  --staff-red: #ff6b7d;
  --staff-text: #eef5ff;
  --staff-muted: #9db9df;
  --staff-panel: linear-gradient(160deg, rgba(9, 18, 33, .95), rgba(3, 9, 18, .96));
  --staff-control: rgba(3, 10, 22, .92);
  --staff-line: rgba(95, 161, 255, .22);
  --staff-line-hover: rgba(95, 161, 255, .48);
  background: #020713 !important;
  color: var(--staff-text) !important;
  overflow-x: hidden !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-page {
  width: min(1420px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  padding: 28px 0 80px !important;
  box-sizing: border-box !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-shell {
  display: grid !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-header {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 4px 2px 2px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-kicker {
  margin: 0 0 8px !important;
  color: #7daee9 !important;
  font: 900 10px/1 "JetBrains Mono", Consolas, monospace !important;
  letter-spacing: .24em !important;
  text-transform: uppercase !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-title {
  margin: 0 !important;
  color: #f6f9ff !important;
  font: 900 clamp(36px, 4vw, 54px)/.95 "Cinzel", Georgia, serif !important;
  letter-spacing: -.045em !important;
  text-shadow: 0 0 28px rgba(95, 161, 255, .11) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-title span {
  color: var(--staff-blue) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-description {
  max-width: 780px !important;
  margin: 10px 0 0 !important;
  color: var(--staff-muted) !important;
  font: 400 15px/1.48 "Crimson Pro", Georgia, serif !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-header-state {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  min-width: 0 !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-status,
html body.ll-admin-shell.admin-staff-ids-page .staff-ids-dirty {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border: 1px solid rgba(85, 230, 140, .28) !important;
  border-radius: 999px !important;
  background: rgba(85, 230, 140, .055) !important;
  color: #aef7c8 !important;
  font: 900 9px/1 "JetBrains Mono", Consolas, monospace !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-status::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--staff-green) !important;
  box-shadow: 0 0 11px rgba(85, 230, 140, .62) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-status.warn {
  border-color: rgba(247, 198, 107, .32) !important;
  background: rgba(247, 198, 107, .055) !important;
  color: #ffe1a3 !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-status.warn::before {
  background: var(--staff-gold) !important;
  box-shadow: 0 0 11px rgba(247, 198, 107, .55) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-status.bad {
  border-color: rgba(255, 107, 125, .34) !important;
  background: rgba(255, 107, 125, .06) !important;
  color: #ffc3cc !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-status.bad::before {
  background: var(--staff-red) !important;
  box-shadow: 0 0 11px rgba(255, 107, 125, .56) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-dirty {
  display: none !important;
  border-color: rgba(247, 198, 107, .28) !important;
  background: rgba(247, 198, 107, .05) !important;
  color: #ffe1a3 !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-dirty.is-visible {
  display: inline-flex !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metrics {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 4px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
  min-height: 82px !important;
  margin: 0 !important;
  padding: 14px 16px !important;
  overflow: hidden !important;
  border: 1px solid var(--staff-line) !important;
  border-radius: 16px !important;
  background: var(--staff-panel) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(255, 255, 255, .025) !important;
  transform: none !important;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric:hover {
  border-color: var(--staff-line-hover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 17px 38px rgba(0, 0, 0, .25), 0 0 20px rgba(15, 104, 234, .07) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 2px !important;
  background: var(--metric-color, var(--staff-blue)) !important;
  box-shadow: 0 0 14px color-mix(in srgb, var(--metric-color, var(--staff-blue)) 48%, transparent) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric.owner {
  --metric-color: var(--staff-red);
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric.admin {
  --metric-color: var(--staff-gold);
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric.tester {
  --metric-color: var(--staff-orange);
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric.total {
  --metric-color: var(--staff-blue);
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric-icon {
  display: grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid color-mix(in srgb, var(--metric-color, var(--staff-blue)) 35%, transparent) !important;
  border-radius: 12px !important;
  background: color-mix(in srgb, var(--metric-color, var(--staff-blue)) 10%, transparent) !important;
  color: var(--metric-color, var(--staff-blue)) !important;
  font: 900 12px/1 "JetBrains Mono", Consolas, monospace !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric-copy b {
  display: block !important;
  margin: 0 !important;
  color: #fff !important;
  font: 900 27px/1 "Cinzel", Georgia, serif !important;
  letter-spacing: -.03em !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metric-copy span {
  display: block !important;
  margin-top: 6px !important;
  color: var(--staff-muted) !important;
  font: 900 9px/1 "JetBrains Mono", Consolas, monospace !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-command-bar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) repeat(4, auto) !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px solid var(--staff-line) !important;
  border-radius: 16px !important;
  background: rgba(5, 13, 25, .88) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .025) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-command-copy {
  min-width: 0 !important;
  padding: 0 6px !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-command-copy strong {
  display: block !important;
  color: #eef5ff !important;
  font: 900 11px/1.2 "Cinzel", Georgia, serif !important;
  letter-spacing: .03em !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-command-copy span {
  display: block !important;
  margin-top: 4px !important;
  overflow: hidden !important;
  color: #7898bd !important;
  font: 700 10px/1.2 "JetBrains Mono", Consolas, monospace !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-btn,
html body.ll-admin-shell.admin-staff-ids-page .staff-ids-link {
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 108px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 13px !important;
  border: 1px solid rgba(95, 161, 255, .32) !important;
  border-radius: 10px !important;
  background: rgba(15, 104, 234, .07) !important;
  color: #8fc1ff !important;
  font: 900 9px/1 "JetBrains Mono", Consolas, monospace !important;
  letter-spacing: .11em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transform: none !important;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-btn:hover,
html body.ll-admin-shell.admin-staff-ids-page .staff-ids-link:hover {
  border-color: rgba(95, 161, 255, .68) !important;
  background: rgba(15, 104, 234, .14) !important;
  color: #e8f3ff !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .20), 0 0 15px rgba(15, 104, 234, .08) !important;
  transform: translateY(-1px) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-btn.primary {
  border-color: rgba(95, 161, 255, .68) !important;
  background: linear-gradient(135deg, #146fe9, #338cff) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(15, 104, 234, .18) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-btn:disabled {
  opacity: .48 !important;
  cursor: wait !important;
  transform: none !important;
  box-shadow: none !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-workspace {
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .62fr) !important;
  align-items: start !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-card,
html body.ll-admin-shell.admin-staff-ids-page .staff-ids-panel {
  position: relative !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid var(--staff-line) !important;
  border-radius: 16px !important;
  background: var(--staff-panel) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .23), inset 0 1px 0 rgba(255, 255, 255, .025) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-head,
html body.ll-admin-shell.admin-staff-ids-page .staff-ids-panel-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 15px 17px !important;
  border-bottom: 1px solid rgba(95, 161, 255, .17) !important;
  background: rgba(3, 9, 18, .46) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-section-label {
  display: block !important;
  margin: 0 0 6px !important;
  color: #6f9fd6 !important;
  font: 900 9px/1 "JetBrains Mono", Consolas, monospace !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

html body.ll-admin-shell.admin-staff-ids-page
  :is(.staff-ids-editor-head h2, .staff-ids-panel-head h2) {
  margin: 0 !important;
  color: #f4f8ff !important;
  font: 900 21px/1.05 "Cinzel", Georgia, serif !important;
  letter-spacing: -.025em !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-head p {
  margin: 7px 0 0 !important;
  color: #8fa8c8 !important;
  font: 400 13px/1.38 "Crimson Pro", Georgia, serif !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-file-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 7px !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-chip {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 27px !important;
  padding: 0 9px !important;
  border: 1px solid rgba(95, 161, 255, .22) !important;
  border-radius: 999px !important;
  background: rgba(15, 104, 234, .045) !important;
  color: #9db9df !important;
  font: 900 8px/1 "JetBrains Mono", Consolas, monospace !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-chip b {
  margin-left: 6px !important;
  color: #eaf3ff !important;
  font: inherit !important;
  overflow: hidden !important;
  max-width: 170px !important;
  text-overflow: ellipsis !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-body {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) !important;
  min-height: 480px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #020812 !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-lines {
  min-height: 480px !important;
  margin: 0 !important;
  padding: 17px 8px !important;
  overflow: hidden !important;
  border-right: 1px solid rgba(95, 161, 255, .14) !important;
  background: #020711 !important;
  color: #416286 !important;
  font: 12px/1.6 "JetBrains Mono", Consolas, monospace !important;
  text-align: right !important;
  user-select: none !important;
  pointer-events: none !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-lines span {
  display: block !important;
}

html body.ll-admin-shell.admin-staff-ids-page textarea.staff-ids-editor {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 480px !important;
  margin: 0 !important;
  padding: 17px 18px !important;
  resize: vertical !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: #020812 !important;
  color: #edf6ff !important;
  font: 13.5px/1.6 "JetBrains Mono", Consolas, monospace !important;
  tab-size: 2 !important;
  caret-color: #84beff !important;
  box-shadow: none !important;
}

html body.ll-admin-shell.admin-staff-ids-page textarea.staff-ids-editor:focus {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(95, 161, 255, .38), inset 0 0 28px rgba(15, 104, 234, .045) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-footer {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 11px 14px !important;
  border-top: 1px solid rgba(95, 161, 255, .17) !important;
  background: rgba(3, 9, 18, .55) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-footer p {
  margin: 0 !important;
  color: #7f9abd !important;
  font: 400 12px/1.35 "Crimson Pro", Georgia, serif !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-side {
  display: grid !important;
  gap: 16px !important;
  min-width: 0 !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-panel-body {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 13px !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-role {
  position: relative !important;
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 11px 12px 11px 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(95, 161, 255, .17) !important;
  border-radius: 12px !important;
  background: rgba(3, 10, 22, .76) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-role::before {
  content: "" !important;
  position: absolute !important;
  inset: 9px auto 9px 0 !important;
  width: 2px !important;
  border-radius: 2px !important;
  background: var(--role-color, var(--staff-blue)) !important;
  box-shadow: 0 0 10px color-mix(in srgb, var(--role-color, var(--staff-blue)) 50%, transparent) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-role.owner {
  --role-color: var(--staff-red);
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-role.admin {
  --role-color: var(--staff-gold);
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-role.tester {
  --role-color: var(--staff-orange);
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-role-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  color: #eef5ff !important;
  font: 900 10px/1 "JetBrains Mono", Consolas, monospace !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-role-count {
  display: inline-grid !important;
  place-items: center !important;
  min-width: 25px !important;
  height: 22px !important;
  padding: 0 6px !important;
  border: 1px solid color-mix(in srgb, var(--role-color, var(--staff-blue)) 35%, transparent) !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--role-color, var(--staff-blue)) 8%, transparent) !important;
  color: var(--role-color, var(--staff-blue)) !important;
  font: 900 9px/1 "JetBrains Mono", Consolas, monospace !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-role-list {
  display: block !important;
  max-height: 100px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: auto !important;
  color: #9db4d1 !important;
  font: 11px/1.55 "JetBrains Mono", Consolas, monospace !important;
  white-space: pre-wrap !important;
  word-break: break-all !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-details {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 4px 13px 13px !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-detail {
  display: grid !important;
  grid-template-columns: 90px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 9px 0 !important;
  border-bottom: 1px solid rgba(95, 161, 255, .12) !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-detail:last-child {
  border-bottom: 0 !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-detail dt {
  margin: 0 !important;
  color: #6f9fd6 !important;
  font: 900 8px/1.4 "JetBrains Mono", Consolas, monospace !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-detail dd {
  min-width: 0 !important;
  margin: 0 !important;
  overflow-wrap: anywhere !important;
  color: #c3d4e9 !important;
  font: 700 10.5px/1.4 "JetBrains Mono", Consolas, monospace !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-messages {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-messages:empty {
  display: none !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-messages li {
  margin: 0 !important;
  padding: 9px 10px !important;
  border: 1px solid rgba(255, 107, 125, .25) !important;
  border-radius: 10px !important;
  background: rgba(255, 107, 125, .05) !important;
  color: #ffc0ca !important;
  font: 700 10.5px/1.4 "JetBrains Mono", Consolas, monospace !important;
}

html body.ll-admin-shell.admin-staff-ids-page .staff-ids-messages.good li {
  border-color: rgba(85, 230, 140, .24) !important;
  background: rgba(85, 230, 140, .045) !important;
  color: #aef7c8 !important;
}

@media (max-width: 1120px) {
  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-workspace {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr) !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-command-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-command-copy {
    grid-column: 1 / -1 !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-btn {
    width: 100% !important;
  }
}

@media (max-width: 880px) {
  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-header,
  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-workspace {
    grid-template-columns: 1fr !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-header-state {
    justify-content: flex-start !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metrics {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 620px) {
  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-page {
    width: min(100% - 24px, 1420px) !important;
    padding-top: 18px !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-title {
    font-size: 37px !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-metrics,
  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-command-bar {
    grid-template-columns: 1fr !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-head,
  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-panel-head,
  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-footer {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-file-meta {
    justify-content: flex-start !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-editor-body {
    grid-template-columns: 38px minmax(0, 1fr) !important;
  }

  html body.ll-admin-shell.admin-staff-ids-page .staff-ids-lines {
    padding-right: 6px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body.ll-admin-shell.admin-staff-ids-page * {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
