.ashow-more-button {
  position: relative;
  width: 60px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
  font-weight: bold;
  font-size: 16px;

  display: flex;
  justify-content: center;
  align-items: center;


  transition: background-color 0.3s ease, transform 0.2s ease;

  overflow: visible;
}

.ashow-more-button:hover {
  
  transform: scale(1.05);
}

.ashow-more-button span {
  position: relative;
  z-index: 1;
  user-select: none;
  pointer-events: none;transform:translateY(-2.5px);
}

.parent-center {
  display: flex;
  justify-content: center;
}