#chatCon {
  width: 20%;
  position: fixed;  /* Change from absolute to fixed */
  bottom: 3%;  /* Keeps it 3% from the bottom */
  right: 3%;   /* Keeps it 3% from the right */
  z-index: 999; /* Ensures it stays on top of other elements */
}

#chatCon .chat-box {
  width: 100%;
  height: 500px;
  border-radius: 25px;
  background-color: #eee;
}

#chatCon .chat-box .header {
  background-color: #1f6ab4;
  padding: 15px;
  border-radius: 20px 20px 0 0;
  color: #fff;
  font-size: 20px;
}

#chatCon .chat-box .msg-area {
  overflow-y: auto;  /* Allow scrolling if content exceeds height */
  height: 370px;
  padding: 15px;
}

#chatCon .chat-box .msg-area .left span,
#chatCon .chat-box .msg-area .right span {
  display: inline-block;
  font-size: 17.5px;
  border-radius: 15px;
  padding: 15px;
  background-color: #ddd;
}

#chatCon .chat-box .msg-area .right {
  text-align: right;
}

#chatCon .chat-box .footer {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatCon .chat-box .footer input {
  border: 1px solid #fff;
  padding: 10px;
  width: 80%;
  border-radius: 15px;
}

#chatCon .chat-box .footer button {
  border: none;
  font-size: 22.5px;
  color: rgb(21, 154, 215);
  cursor: pointer;
}

#chatCon .pop {
  width: 100%;
  height: 25%;
  cursor: pointer;
}

#chatCon .pop p {
  text-align: right;
}

#chatCon .pop img {
  border-radius: 50%;
  width: 25%;
}

/* Media Queries for Responsiveness */

@media (max-width: 768px) {
  #chatCon {
    width: 40%;  /* Increase the width on medium-sized screens */
    bottom: 5%;
    right: 5%;
  }

  #chatCon .chat-box {
    height: 400px;  /* Adjust the height for smaller screens */
  }

  #chatCon .chat-box .header {
    font-size: 18px;  /* Reduce font size */
  }

  #chatCon .chat-box .msg-area {
    height: 250px;  /* Decrease message area height */
  }

  #chatCon .chat-box .footer input {
    padding: 8px;
    width: 70%;  /* Adjust input width for better use of space */
  }

  #chatCon .chat-box .footer button {
    font-size: 20px;  /* Adjust button size */
  }

  #chatCon .pop img {
    width: 35%;  /* Make the pop image a bit larger for visibility */
  }
}

@media (max-width: 480px) {
  #chatCon {
    width: 60%;  /* Use more width on small screens */
    bottom: 5%;
    right: 5%;
  }

  #chatCon .chat-box {
    height: 350px;  /* Adjust the height further */
  }

  #chatCon .chat-box .header {
    font-size: 16px;  /* Smaller font for header */
  }

  #chatCon .chat-box .msg-area {
    height: 200px;  /* Further reduce message area height */
  }

  #chatCon .chat-box .footer input {
    padding: 6px;
    width: 60%;  /* Even more narrow input */
  }

  #chatCon .chat-box .footer button {
    font-size: 18px;
  }

  #chatCon .pop img {
    width: 45%;  /* Adjust image size for small devices */
  }
}
