body .fab-container {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 9999;
}

@media (max-width: 767px) {
  body .fab-container {
            bottom: 5px !important;
        right: 10px !important;
  }
}

body .fab-btn {
  background: rgb(1, 61, 196);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none; /* remove underline */
}

body .fab-btn:hover {
  background: rgb(0, 50, 160);
  transform: scale(1.05);
  color: #fff;
}

body .fab-option {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

body .fab-container.active .fab-option {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body .fab-container.active .fab-option:nth-child(1) {
  transition-delay: 0.1s;
}
body .fab-container.active .fab-option:nth-child(2) {
  transition-delay: 0.05s;
}
