.back-to-home {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* background-image: linear-gradient(120deg, rgb(132, 250, 176) 0%, rgb(143, 211, 244) 100%); */
  background-image: linear-gradient(-225deg, #E3FDF5 0%, #FFE6FA 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 24px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

.feedback-float-button {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: linear-gradient(-225deg, #E3FDF5 0%, #FFE6FA 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border: 1px solid #FFA99F;
    color: #FFA99F;
    text-align: center;
    transition: background-color 0.3s ease;
    font-size: 12px;
    line-height: 1.2;
}

.feedback-float-button:hover {
    color: #ffffff;
    background: #FFA99F;
}