  .whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 30px; /* Menambahkan margin di sebelah kanan */
    display: flex;
    align-items: center;
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    color: #4f4f4f;
    z-index: 1000;
    cursor: pointer;
  }

  /* Teks */
  .whatsapp-container .text {
    margin-right: 10px;
    font-size: 14px;
    color: #4f4f4f;
    background: #f5f7f9;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  .whatsapp-container .text b {
    color: #000;
  }

  /* Ikon WhatsApp */
  .whatsapp-container .whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
  }

  /* Konten pop-up */
  .whatsapp-popup {
    position: fixed;
    bottom:130px; /* Jarak pop-up dari tombol utama */
    right: 0;
    width: 320px; /* Lebar pop-up ditingkatkan */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: left;
    font-family: Arial, sans-serif;
    color: #4f4f4f;
    animation: slideUp 0.3s ease; /* Animasi untuk smooth */
    margin-right: 20px;
    z-index: 999;
  }

  .whatsapp-popup-header {
    background-color: #25d366;
    color: #ffffff;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    text-align: center;
  }

  .whatsapp-popup p {
    margin: 10px;
    color: #4f4f4f;
    font-size: 14px;
  }

  .contact-list {
    margin-top: 10px;
    width: 100%;
  }

  .contact-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #eee;
    border-radius: 5px;
    margin: 10px;
    transition: background-color 0.2s;
    cursor: pointer;
  }

  .contact-item:hover {
    background-color: #eaeaea;
  }

  .contact-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .contact-details {
    flex: 1;
    text-align: left;
  }

  .contact-name {
    font-weight: bold;
    font-size: 14px;
  }

  .contact-role {
    font-size: 12px;
    color: #777;
  }

  .contact-item .whatsapp-icon {
    color: #25d366;
    font-size: 20px;
  }

  /* Animasi untuk pop-up muncul dari bawah */
  @keyframes slideUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }