body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.35;
  z-index: 0;
}

.slug-layout .workspace-panel {
  min-width: 0;
}

.slug-input {
  min-height: 190px;
}

.option-list {
  display: grid;
  gap: 10px;
}

.option-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #e7edf3;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.option-toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.option-toggle span {
  color: #e7edf3;
  font-weight: 700;
}

.slug-output-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(245, 163, 0, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 163, 0, 0.1), rgba(255, 255, 255, 0.035));
}

.slug-output-card code {
  display: block;
  width: 100%;
  color: #fff4d8;
  font-family: Consolas, "Liberation Mono", Menlo, monospace;
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.slug-example-table td:last-child {
  color: #fff4d8;
  font-family: Consolas, "Liberation Mono", Menlo, monospace;
}

@media (max-width: 720px) {
  .slug-output-card {
    min-height: 94px;
    padding: 18px;
  }
}
