.team-management-header {
  margin-bottom: 32px;
}

.team-management-header h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
}

.team-management-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.team-create-btn {
  margin-bottom: 28px;
}

.team-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-actions button {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: rgba(100, 116, 139, 0.08);
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
}

.team-actions button svg {
  width: 16px;
  height: 16px;
}

.team-actions button:hover {
  background: rgba(56, 189, 248, 0.16);
  color: #0284c7;
  transform: translateY(-1px);
}

.team-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}

.team-status.active {
  background: rgba(34, 197, 94, 0.18);
  color: #15803d;
}

.team-status.inactive {
  background: rgba(239, 68, 68, 0.18);
  color: #b91c1c;
}

.team-empty-state {
  text-align: center;
  padding: 48px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.modal.team-modal {
  width: 420px;
}

.modal.team-modal h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 16px;
}

.team-actions button {
  position: relative;
  overflow: visible;
}

.team-actions button:hover .icon-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
