/* === kaynak: components.css 2214-2275 (BOLUM 5: empty states + form errors) - Z-2 sprint === */

   BOLUM 5: EMPTY STATE DESIGNS
   ═══════════════════════════════════════════════════════════════════ */

.th-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--th-space-12) var(--th-space-6);
  gap: var(--th-space-4);
}
.th-empty-state__icon {
  width: var(--th-empty-icon-size);
  height: var(--th-empty-icon-size);
  color: var(--th-empty-icon-color);
  font-size: 48px;
}
.th-empty-state__title {
  font-size: var(--th-empty-title-font);
  font-weight: var(--th-font-semibold);
  color: var(--th-empty-title-color);
  margin: 0;
}
.th-empty-state__desc {
  font-size: var(--th-empty-desc-font);
  color: var(--th-empty-desc-color);
  max-width: 400px;
  margin: 0;
}
.th-empty-state__cta {
  margin-top: var(--th-space-2);
}


/* ═══════════════════════════════════════════════════════════════════
   BOLUM 6: ERROR STATE DESIGNS
   ═══════════════════════════════════════════════════════════════════ */

/* ── 6B: Form Error Message ── */
.th-form-error {
  display: flex;
  align-items: center;
  gap: var(--th-space-1);
  font-size: var(--th-text-xs);
  color: var(--th-color-danger);
  margin-top: var(--th-space-1);
}
.th-form-error::before {
  content: '\26A0';
  flex-shrink: 0;
}

/* ── 6D: Image Fallback ── */
.th-img-error {
  opacity: 0.5;
  object-fit: contain;
  background: var(--th-color-bg-tertiary);
}


/* ═══════════════════════════════════════════════════════════════════
