/* ============================================================
   QAD Calidad — Módulo organizations
   Estilos exclusivos de este módulo. Reutiliza tokens.css y
   components/* antes de declarar algo nuevo aquí.
   ============================================================ */

/* ─── Avatar de organización (inicial del nombre) ──────────────── */
.org-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-surface);
  font-weight: 700;
  font-size: 0.875rem;
}
.org-avatar-lg {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.125rem;
}

/* ─── Banner de sugerencias de perfil (IA) ──────────────────────── */
.profile-suggestions-banner {
  background: var(--color-info-bg);
  border: 1px solid #C7DCEC;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.profile-suggestions-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-suggestions-body { flex: 1; min-width: 0; }
.profile-suggestions-title { font-weight: 600; color: var(--color-info-text); margin-bottom: 0.5rem; }
.profile-suggestions-desc { font-size: 0.875rem; color: var(--color-text-body); margin-bottom: 0.75rem; }
.profile-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}
.profile-suggestions-grid dt { color: var(--color-text-muted); font-weight: 500; }
.profile-suggestions-grid dd { color: var(--color-text); margin: 0; }
.profile-suggestions-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.confidence-badge {
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.25rem;
}
.confidence-high   { background: var(--color-success-bg); color: var(--color-success-text); }
.confidence-medium { background: var(--color-warning-bg); color: var(--color-warning-text); }
.confidence-low    { background: var(--color-border-subtle); color: var(--color-text-muted); }

/* ─── Aviso de perfil incompleto ─────────────────────────────────── */
.profile-nudge {
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.profile-nudge-icon { flex-shrink: 0; color: var(--color-text-faint); }
.profile-nudge-text { flex: 1; font-size: 0.875rem; color: var(--color-text-muted); }
