/* Floating buttons container */
.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
  }

  /* Live support label */
  .live-support-label {
    background-color: white;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    margin-right: 10px;
    transition: all 0.3s ease;
  }

  /* Button container */
  .button-container {
    position: relative;
  }

  /* Main button styles */
  .main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6247EB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 3;
    position: relative;
  }

  .main-button:hover {
    transform: scale(1.05);
  }

  /* Action buttons (WhatsApp and Email) */
  .action-buttons {
    position: absolute;
    bottom: 70px;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
  }

  .action-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  .action-button:hover {
    transform: scale(1.05);
  }

  .action-buttons.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Specific button styles */
  .email-button {
    background-color: #E74C3C;
    color: white;
  }

  .whatsapp-button {
    background-color: #25D366;
    color: white;
  }

  /* Icon styles */
  .chat-icon, .close-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
  }

  .close-icon {
    display: none;
  }

  .main-button.active .close-icon {
    display: block;
  }

  .main-button.active .chat-icon {
    display: none;
  }

  /* For demonstration purposes - can be removed */
  .demo-content {
    height: 2000px;
    padding: 20px;
  }