@charset "UTF-8";


    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      background-color: #25d366;
      border-radius: 50%;
      padding: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float img {
      width: 32px;
      height: 32px;
    }

    #chatBox {
      position: fixed;
      bottom: 80px;
      right: 20px;
      background: white;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      display: none;
      z-index: 998;
    }

    #chatBox input {
      padding: 6px;
      width: 200px;
    }

    #chatBox button {
      margin-left: 5px;
      padding: 6px 10px;
      background-color: #25d366;
      color: white;
      border: none;
      border-radius: 5px;
    }
