.whatsapp-float {
  position: fixed;
  bottom: 10px;
  right: 50px;
  display: flex;
  align-items: center;
  background-color: #19bd60;
  color: white;
  padding: 10px 15px;
  border-radius: 15px 0 0 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

.pg-whatsapp-icondiv {
  position: fixed;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  bottom: 5px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #19bd60;
}

.pg-whatsapp-icondiv i {
  font-size: 20px;
  color: #19bd60;
}
.pg-whatsapp-popup-container {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 10px;
  background-color: #ffffff;
  width: 300px;
  box-shadow: 0px 0px 10px 2px #919191;
  border-radius: 10px;
  border: 4px solid #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}
.pg-whatsapp-show {
  display: block;
}
.pg-whatsapp-popup-titlediv {
  width: 100%;
  background-color: #19bd60;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.pg-whatsapp-popup-titlediv p {
  text-align: center;
  padding: 10px;
  color: #fff;
  max-width: 85%;
}
.pg-whatsapp-closeicon {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #17c7bd;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-whatsapp-closeicon:hover {
  background-color: rgb(230, 77, 77);
}
.pg-whatsapp-closeicon i {
  color: #ffffff;
  font-size: 10px;
}
.pg-whatsapp-accounts-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 250px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 2px;
}
.pg-whatsapp-account-div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(24, 24, 23, 0.089);
  padding: 10px;
}
.pg-whatsapp-account-div:hover {
  background-color: #3838382f;
  cursor: pointer;
}
.pg-whatsapp-profilediv {
  width: 50px;
  height: 50px;
}
.pg-whatsapp-profilediv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}
.pg-whatsapp-profile-contentdiv p:first-child {
  font-size: 12px;
  color: #3a3a3a;
}
.pg-whatsapp-profile-contentdiv p:last-child {
  font-size: 16px;
  color: #131313;
  font-weight: 500;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 10px;
    right: 25px;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px 0 0 0;
  }
  .pg-whatsapp-icondiv {
    position: fixed;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    bottom: 8px;
    right: 5px;
    border: 2px solid #19bd60;
  }
  .pg-whatsapp-icondiv i {
    font-size: 15px;
  }
}
