    body {
      width: 100%;
      min-width: 360px;
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: Arial, sans-serif;
      color: white;
      position: relative;
      z-index: 1;
      overflow-x: hidden;
    }
    .video-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -100;
      overflow: hidden;
      background-size: cover;
    }
    .content {
      position: relative;
      display: flex;
      flex-direction: column;
      z-index: 1;
      padding: 50px;
      background: rgba(0, 0, 0, 0.4);
      overflow-x: hidden;
    }
    /* Button styling */
    #audio-control {
      bottom: 20px;
      right: 20px;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      background: rgb(7, 77, 15, 0.9);
      color: white;
      cursor: pointer;
      font-size: 16px;
      z-index: 2;
      overflow: hidden;
    }

    #audio-control:hover {
      background: rgba(0, 0, 0, 0.9);
    }

    #message-control {
      bottom: 50px;
      right: 50px;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      background: rgb(7, 77, 15, 0.9);
      color: white;
      cursor: pointer;
      font-size: 16px;
      z-index: 2;
      overflow: hidden;
    }

    #message-control:hover {
      background: rgba(0, 0, 0, 0.9);
    }
    .fixed-bottom {
      display: flex;
      flex-direction: column;
      position: fixed;
      bottom: 0;
      right: 0;
      z-index: 20;
      gap: 10px;
      padding: 20px;
    }
      /* Popup background */
  .modal {
    min-width: 300px;
    width: fit-content;
    display: none; 
    position: fixed; 
    z-index: 1000; 
    right: 35px; 
    bottom: 50px; 
    
  }

  /* Modal box */
  .modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);

    span{
      color: #000;
    }
    h2{
      color: black;
    }
  }

  /* Close button */
  .close {
    float: right;
    font-size: 22px;
    cursor: pointer;
  }

  /* Form styles */
  #message-form {
    display: flex;
    flex-direction: column;
  }

  #message-form label {
    margin-top: 5px;
    font-weight: semi-bold;
    color: #000;
  }

  #message-form input, 
  #message-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  #message-form button {
    margin-top: 15px;
    padding: 10px;
    background: #005f3f;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  #message-form button:hover {
    background: #007a50;
  }

  /* Tabs */
  .tab-buttons {
    display: flex;
    margin-bottom: 10px;
    max-width: 300px;
  }

  .tab-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #eee;
    cursor: pointer;
  }

  .tab-buttons button.active {
    background: #005f3f;
    color: #fff;
    font-weight: bold;
  }

  #whatsapp-section {
    width: inherit;
    max-width: 350px;
    display: flex;
    flex-direction: column;
  }

  #whatsapp-section textarea {
    width: 100%;
    max-width: 250px;
    border: 1px solid #ccc;
    border-radius: 6px;
    
  }

  #send-whatsapp {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  #send-whatsapp:hover {
    background: #1da851;
  }

.icon-play,
.icon-pause {
  width: 25px;
  height: 25px;
  display: none;
  fill: white;
  padding: 0px 0px;
}
    
.icon-message {
  width: 25px;
  height: 25px;
  fill: white;
}


