.entity-selection .entity-selection-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}
.entity-selection .entity-selection-description {
  width: 100%;
}
.entity-selection .entity-selection-cascade {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  width: 100%;
  max-width: 30rem;
  text-align: start;
}
.entity-selection .entity-selection-level {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
}
.entity-selection .entity-selection-level[hidden] {
  display: none;
}
.entity-selection .entity-selection-select {
  box-sizing: border-box;
  width: 100%;
}
.entity-selection [data-entity-cascade-submit]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.ss-convo-entity {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--convo-border);
  border-radius: 1rem;
  background: var(--convo-surface);
  animation: ss-convo-in 0.3s ease-out both;
}

.ss-convo-entity-cascade {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ss-convo-entity-level {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  animation: ss-convo-in 0.3s ease-out both;
}
.ss-convo-entity-level[hidden] {
  display: none;
}

.ss-convo-entity-label {
  color: var(--convo-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.ss-convo-entity-select {
  box-sizing: border-box;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.75rem;
  border: 1.5px solid var(--convo-border);
  border-radius: 0.75rem;
  background: var(--convo-surface);
  color: var(--convo-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.ss-convo-entity-select:focus {
  border-color: var(--convo-primary);
  box-shadow: 0 0 0 3px var(--convo-focus-ring);
  outline: none;
}
.ss-convo-entity-select.input-validation-error {
  border-color: var(--convo-error);
}

.ss-convo-entity-error {
  color: var(--convo-error);
  font-size: 0.85rem;
  line-height: 1.4;
}
.ss-convo-entity-error.field-validation-valid:empty {
  display: none;
}

.ss-convo-entity-submit {
  align-self: flex-start;
  min-height: 2.75rem;
  padding: 0.5rem 1.75rem;
  border: none;
  border-radius: 999px;
  background: var(--convo-primary);
  color: var(--convo-on-primary);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.16s ease, transform 0.16s cubic-bezier(0.22, 1, 0.36, 1);
}
.ss-convo-entity-submit:hover {
  filter: brightness(0.95);
}
.ss-convo-entity-submit:active {
  transform: scale(0.97);
}
.ss-convo-entity-submit:focus-visible {
  outline: 2px solid var(--convo-primary);
  outline-offset: 2px;
}
.ss-convo-entity-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ss-convo-entity,
  .ss-convo-entity-level {
    animation: none;
  }
  .ss-convo-entity-submit {
    transition: none;
  }
}

/*# sourceMappingURL=entity-selection.css.map */
