.ci-preview {
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 11px;
  line-height: 1.45;
  color: #475569;
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 4.5rem;
  overflow: hidden;
}

.ci-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(0.5rem);
  z-index: 50;
  padding: 0.55rem 0.95rem;
  border-radius: 0.5rem;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.ci-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#ci-cats.sg-segment {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 640px) {
  #ci-cats.sg-segment {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
