.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  z-index: 10000;
  color: white;
}

.whatsappWrapper {
  position: relative;
}

.whatsappButton {
  background-color: #25d366;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.whatsappButton:hover {
  background-color: #13f465dc;
}

.whatsappImg {
  width: 100%;
  height: 100%;
  font-size: 530px !important;
}

.whatsappTextBox {
  width: 320px;
  height: 300px;
  background-color: #1e1e1e;
  position: absolute;
  top: -280px;
  left: 50px;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

.whatsappTextBoxClose {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: 900;
  color: lightgray;
  cursor: pointer;
}

.whatsappTextBoxLineBreak {
  color: lightgray;
  margin: 10px 0px;
}

.whatsappTextBoxUpper {
  display: flex;
  gap: 15px;
  align-items: center;
}

.whatsappTextBoxUpperProfile {
  display: flex;
  width: max-content;
  height: max-content;
  position: relative;
}

.whatsappTextBoxUpperProfilePic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.whatsappTextBoxUpperProfileOnlineStatus {
  position: absolute;
  background-color: rgb(0, 255, 0);
  width: 8px;
  height: 8px;
  bottom: 2px;
  right: 2px;
  border-radius: 50%;
  z-index: 10;
}

.whatsappTextBoxUpperProfileDetailsName {
  font-weight: 900;
  font-size: 16px;
}

.whatsappTextBoxUpperProfileDetailsOnline {
  font-weight: 100;
  font-size: 14px;
}

.whatsappTextBoxLower {
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatsappTextBoxLowerMessage {
  background-color: #3d3c3cf1;
  padding: 15px;
  margin: 25px;
  border-radius: 5px;
  font-weight: 100;
}

.whatsappTextBoxLowerButton .whatsappButton {
  padding: 0;
  width: 30px;
  height: 30px;
  background-color: transparent !important;
}

.whatsappTextBoxLowerButton {
  background-color: #13f465dc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 8px 14px;
  border-radius: 10px;
  gap: 10px;
  cursor: pointer;
}

@media (max-width: 700px) {
  .whatsappTextBox {
    width: 280px;
    height: 300px;
    top: -280px;
    left: 10px;
    border-radius: 8px;
  }
}
