/* ================== css/team.css =================== */

/* Card do Usuário */
.ef-user-card {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Informações do Usuário (Email e Cargo) */
.ef-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ef-user-email {
  font-weight: 500;
  color: #fff;
  font-size: 0.95rem;
  word-break: break-all; /* Importante para emails longos no celular */
}

/* Badge de Cargo */
.ef-user-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #888;
  background: #222;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}

.ef-user-badge.admin {
  color: #ff2d55;
  background: rgba(255, 45, 85, 0.1);
}

/* Botão de Remover (Lixeira) */
.ef-btn-icon {
  background: transparent;
  border: 1px solid #333;
  color: #666;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex-shrink: 0; /* Impede que o botão amasse no mobile */
}

.ef-btn-icon:hover {
  border-color: #ff5252;
  color: #ff5252;
  background: rgba(255, 82, 82, 0.1);
}
