.buttons {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 4px;
}
.buttons > .button {
  font-size: 14px;
  font-weight: 500;
  padding: 4px 12px;
  color: rgb(10, 10, 10);
  border: 1px solid rgb(229 229 229);
  border-radius: 10px;
  background-color: rgb(240, 240, 240);
}
.buttons.even > .button {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}
.buttons > .button.primary {
  color: rgb(255 255 255);
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: rgb(0, 130, 54);
}
.buttons > .button.secondary {
  color: rgb(10, 10, 10);
  border: 1px solid rgb(229 229 229);
  background-color: rgb(255 255 255);
}
.buttons > .button.destructive {
  color: rgb(231, 0, 11);
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: rgba(231, 0, 11, 0.1);
}