.support-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 1000;
}

.support-balloon {
  background-color: white;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: #333;
  max-width: 200px;
  position: relative;
}

.support-balloon p {
  margin: 0;
}

.support-balloon strong {
  font-style: italic;
  color: #4caf50;
}

.support-icon {
  background-color: #4caf50;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.support-icon ion-icon {
  color: white;
  font-size: 24px;
}

.support-button:hover .support-icon {
  transform: scale(1.1);
}

.support-modal {
  position: absolute;
  bottom: 80px;
  left: 0;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  z-index: 1001;
  width: 210px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.support-button .support-modal.show {
  opacity: 1;
  transform: scale(1);
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.modal-option:hover {
  background-color: #f0f0f0;
}

.modal-option ion-icon {
  font-size: 20px;
  color: #4caf50;
}

.modal-option span {
  font-size: 0.9rem;
  color: #333;
}

@media only screen and (max-width: 600px) {
  .support-balloon {
    display: none;
  }

  .support-button {
    bottom: 15px;
    right: 15px;
  }

  .support-icon {
    padding: 10px;
  }

  .support-icon ion-icon {
    font-size: 24px;
  }

  .support-modal {
    display: none;
    left: auto;
    right: calc(100% + 20px);
    transform: translateX(0);
    bottom: 0;
    opacity: 0;
    flex-direction: row;
    gap: 20px;
    padding: 15px 25px;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .support-button .support-modal.show {
    display: flex;
    opacity: 1;
    transform: none;
  }

  .modal-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 10px;
  }

  .modal-option ion-icon {
    font-size: 26px;
    color: #4caf50;
  }

  .modal-option span {
    display: block;
    font-size: 0.85rem;
    font-weight: normal;
  }
}
