/* User avatar companion — follows player into every game */

.ep-user-companion {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 8800;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(240px, calc(100vw - 28px));
  padding: 8px 12px 8px 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(45, 106, 79, 0.18);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.14);
  pointer-events: none;
  font-family: "Nunito", system-ui, sans-serif;
}

.ep-user-companion__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #52b788;
  background: #e8f5e9;
  flex-shrink: 0;
  display: block;
}

.ep-user-companion__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 4px;
}

.ep-user-companion__name {
  font-weight: 800;
  font-size: 0.92rem;
  color: #1b4332;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.ep-user-companion__role {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
}

/* Keep clear of coach bubble (bottom-right) */
.ep-coach {
  left: auto;
  right: 16px;
  bottom: 16px;
}

/* Coach face = user portrait when available */
.ep-coach__face {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #52b788;
  flex-shrink: 0;
  background: #e8f5e9;
}

@media (max-width: 420px) {
  .ep-user-companion {
    bottom: 10px;
    left: 10px;
    padding: 6px 10px 6px 6px;
  }
  .ep-user-companion__img {
    width: 44px;
    height: 44px;
  }
  .ep-user-companion__name {
    font-size: 0.82rem;
    max-width: 100px;
  }
}
