.add-menu {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: var(--space-s) 0;

  >li {
    display: flex;
    flex: 1;

    >button {
      flex: 1;
      align-items: center;
      justify-content: center;
      height: 4rem;
      display: flex;
      flex-direction: row;
      gap: var(--space-2xs);
      padding: 0;
    }
  }
}