.action-icon {
  width: 35px;
  height: 35px;
  padding: 7px !important;
  border-radius: 9px;
  background: #f1f6f3;
  color: var(--green);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.action-icon:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
}
.action-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.actions {
  align-items: center;
  gap: 5px !important;
}
.action-icon.danger-icon {
  color: #a83838;
  background: #fbeaea;
}
.action-icon.danger-icon:hover,
.danger-button {
  color: #fff;
  background: #b63b3b;
}
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}
.credential-row {
  display: flex;
  gap: 8px;
}
.credential-row input {
  min-width: 0;
}
.credential-row button {
  flex: 0 0 auto;
  padding: 8px 12px;
}
