.create-card-body.gs-body {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.25rem;
}

@keyframes gsItemIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.gs-checklist-title {
  font-size: var(--st-text-base);
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gs-checklist-item:hover .gs-checklist-title {
  color: var(--text-color);
}
