/* ── User sidebar list ── */
.user-list { list-style: none; }

.user-list a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  border-left: 3px solid transparent;
  transition: background 0.1s;
}
.user-list a:hover  { background: var(--bg); }
.user-list a.active { background: var(--bg); border-left-color: var(--text); font-weight: 500; }

.user-list-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.user-list-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── User header ── */
.user-header {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.user-header-left { display: flex; align-items: center; gap: 14px; }

.user-header-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}

.user-header-name { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.user-header-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.user-header-link { font-size: 12.5px; color: var(--muted); text-decoration: none; }
.user-header-link:hover { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* ── Company card (dentro de vista usuario) ── */
.company-logo-link { text-decoration: none; flex-shrink: 0; }

.company-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--muted);
}

.company-card-title { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.company-name-link  { color: var(--text); text-decoration: none; }
.company-name-link:hover { text-decoration: underline; text-underline-offset: 2px; }

.company-card-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

.company-card-kpi { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.kpi-tag { font-size: 11px; padding: 2px 9px; border-radius: 100px; background: var(--bg); border: 1px solid var(--border); color: var(--muted); }
.kpi-tag.kpi-green { background: var(--high-bg); color: var(--high-text); border-color: transparent; font-weight: 600; }

/* ── Identified contact ── */
.identified-contact { font-size: 12.5px; color: var(--muted); margin-bottom: 10px; }
.identified-contact strong { color: var(--text); font-weight: 500; }
