.button-move {
  color: var(--white);
  border: none;
  padding: 10px 20px;
  position: relative;
  padding-right: 40px;
}

.button-move-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.2s ease;
}

@media (hover: hover) {
  .button-move:hover .button-move-icon {
    right: 12px; /* Move 3px to the right (from 15px to 12px) */
  }
}
