/* ═══════════════════════════════════════
   Avatar Component — Estilos reutilizables
   ═══════════════════════════════════════ */

/* --- Base --- */
.avatar{
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 600;
  color: #fff; flex-shrink: 0;
  background: var(--ink-mid);
  user-select: none;
  overflow: hidden;
  position: relative;
}

/* --- Silueta por defecto (sin foto) --- */
.avatar-silhouette{
  width: 55%; height: 55%; display: block;
}

/* --- Tamaños --- */
.avatar-sm{
  width: 28px; height: 28px;
  font-size: 10px;
}
.avatar-xs{
  width: 20px; height: 20px;
  font-size: 9px;
}
.avatar-lg{
  width: 48px; height: 48px;
  font-size: 16px;
}
.avatar-xl{
  width: 72px; height: 72px;
  font-size: 22px;
}

/* --- Topbar --- */
.avatar-top{
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 600;
  color: #fff; flex-shrink: 0;
  user-select: none;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.avatar-top:hover{
  box-shadow: 0 0 0 3px var(--signal-soft);
}

/* --- Profile --- */
.profile-avatar{
  width: 120px; height: 120px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 38px; font-weight: 600;
  color: #fff; flex-shrink: 0;
  user-select: none;
  overflow: hidden;
}
