img{
    
}
      #whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        cursor: pointer;
      }

      #whatsapp-button img {
        width: 60px;
      }

      #chat-popup {
        position: fixed;
        bottom: 90px;
        right: 20px;
        width: 300px;
        border-radius: 10px;
        background: white;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        font-family: Arial, sans-serif;
        z-index: 1000;
        display: none;
        flex-direction: column;
        overflow: hidden;
      }

      .chat-header {
        background-color: #075e54;
        color: white;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .chat-header .logo {
        width: 30px;
        height: 30px;
        border-radius: 50%;
      }

      .chat-header .close-btn {
        margin-left: auto;
        cursor: pointer;
        font-size: 20px;
      }

      .status {
        font-size: 12px;
        color: lightgreen;
      }

      .chat-body {
        padding: 15px;
        background-color: #f0f0f0;
        flex-grow: 1;
      }

      .message {
        background-color: white;
        padding: 10px;
        border-radius: 10px;
        max-width: 80%;
        margin-bottom: 10px;
      }

      .chat-footer {
        padding: 10px;
        display: flex;
        background-color: #e6e6e6;
      }

      .chat-footer input {
        flex: 1;
        border: none;
        padding: 8px;
        border-radius: 20px;
        margin-right: 10px;
      }

      .chat-footer button {
        background-color: #25d366;
        border: none;
        color: white;
        padding: 8px 12px;
        border-radius: 50%;
        cursor: pointer;
      }
    





