.profile-container{
  width: 100%;
}
.profile-links li{
  width: 280px;
  height: 50px;
}
.profile-links .btn {
  position: relative;
  padding: 10px 20px;
  color: white;
  border: none;
  cursor: pointer;
  transition: height 0.3s ease,width 0.3s ease, box-shadow 0.3s ease; /* Añadiendo transición a box-shadow */
  box-shadow: 5px 5px 0 var(--aux-bg-color, #608b00); /* Usamos rgba para control de opacidad */
  width: 230px;
  height:20px;
  display: flex!important;
  align-items: center;
  justify-content: center;
}

.profile-links .btn:hover {
  width: 235px;
  height:25px;
  box-shadow: 0px 0px 0 rgba(96, 139, 0, 0); /* Hacemos que el box-shadow se desvanezca hasta ser transparente */
}

.profile-links ul{
  display: flex;
  flex-direction: column;
  align-items: center;
}