.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  
  .main-btn {
    background-color: #2e5d32;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
  }
  
  .main-btn i {
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .main-btn .icon-close {
    transform: rotate(-90deg);
    opacity: 0;
  }
  
  .floating-btn.open .main-btn .icon-default {
    transform: rotate(90deg);
    opacity: 0;
  }
  
  .floating-btn.open .main-btn .icon-close {
    transform: rotate(0deg);
    opacity: 1;
  }
  
  .sub-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .floating-btn.open .sub-buttons {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .sub-buttons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-float {
    button {
      margin-bottom: 5px;
    }
    i {
      margin-right: 10px;
    }
  }

  .modal-body {
    .btn-success {
      width: 100%;
    }
  }