/* widgets/team/team.css */

.widget-team {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.team-avatar {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.14);
}

.team-body {
  flex: 1 1 auto;
  min-width: 0;
}

.team-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.team-role {
  font-size: 0.8rem;
  opacity: 0.8;
}

.team-contact {
  font-size: 0.75rem;
  opacity: 0.7;
}

.team-status {
  flex: 0 0 auto;
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.9;
}

.team-empty {
  font-size: 0.85rem;
  opacity: 0.8;
}

.team-meta {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
}