/* [project]/src/app/_components/states.css [app-client] (css) */
.state-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 468px;
  margin: 0 auto;
  padding: 40px 28px;
  display: flex;
}

.state-icon {
  background: var(--bg-surface);
  width: 56px;
  height: 56px;
  color: var(--text-muted);
  border-radius: 50%;
  flex: none;
  place-items: center;
  margin-bottom: 20px;
  display: grid;
}

.state-icon svg {
  width: 26px;
  height: 26px;
}

.state-icon.is-success {
  background: var(--bg-success-subtle);
  color: var(--color-success);
}

.state-icon.is-error {
  background: var(--bg-danger-subtle);
  color: var(--color-error);
}

.state-card h1 {
  font-size: var(--text-md);
  font-weight: var(--font-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin: 0;
}

.state-card p {
  color: var(--text-muted);
  max-width: 46ch;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.state-card .btn {
  margin-top: 24px;
}

.state-empty {
  text-align: center;
  border-style: dashed;
  margin-top: 26px;
  padding: 40px 28px;
}

.state-empty .asm-ic {
  margin: 0 auto 16px;
}

.state-empty h2 {
  font-size: var(--text-md);
  margin-bottom: 6px;
}

.state-empty p {
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 auto;
  font-size: 14px;
}

.state-error {
  background: var(--bg-danger-subtle);
  border: 1px solid var(--color-error);
  border-radius: var(--radius-md);
  border-left-width: 2px;
  align-items: flex-start;
  gap: 14px;
  margin-top: 26px;
  padding: 18px 20px;
  display: flex;
}

.state-error .sic {
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  width: 34px;
  height: 34px;
  color: var(--color-error);
  flex: none;
  place-items: center;
  display: grid;
}

.state-error .sic svg {
  width: 18px;
  height: 18px;
}

.state-error .stx {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.55;
}

.state-error .stx b {
  color: var(--text-primary);
  font-weight: var(--font-semibold);
  margin-bottom: 2px;
  font-size: 15px;
  display: block;
}

.sk {
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  animation: 1.5s ease-in-out infinite skPulse;
}

@keyframes skPulse {
  50% {
    opacity: .55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sk {
    animation: none;
  }
}

/*# sourceMappingURL=src_app__components_states_0162f1y.css.map*/