 .joinchat__box__scroll {
    width: 90%;
	max-width:400px;
    height: 153px;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    background-color: rgb(230, 221, 212);
    background-image: url(https://cdn.join.chat/app/uploads/2020/05/whatsapp-bg.png);
    background-size: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    position: fixed;
    bottom: 1px;
    right: 5%;
    z-index: 1000;
   
  }

  .joinchat__header {
    background: #128C7E;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    position: relative;
  }

  .close-chat {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 18px;
  }

  .joinchat__messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
  }

  .message.agent {
    background-color: white;
    align-self: flex-start;
  }

  .joinchat__input {
    display: flex;
    padding: 10px;
    background: #f0f0f0;
  }

  .joinchat__input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
  }

  .joinchat__input button {
    margin-left: 10px;
    background: #128C7E;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-float {
    position: fixed;
    bottom: 4px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    color: white;
    font-size: 28px;
    display:none;
  }