/* Start custom CSS *//* Kontainer utama chat */
.whatsapp-chat-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #e5ddd5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  background-color: #f0f0f0;
}

/* Gaya untuk pesan */
.message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* Pesan yang dikirim oleh pengguna (kanan) */
.message.right {
  align-items: flex-end;
}

/* Nama pengirim */
.sender {
  font-size: 12px;
  color: #777;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Konten pesan */
.content {
  padding: 10px 15px;
  max-width: 75%;
  background-color: #dcf8c6; /* Warna hijau WhatsApp */
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  word-wrap: break-word;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Pesan dari pengirim lain (kiri) */
.message.left .content {
  background-color: #ffffff; /* Warna putih untuk pesan kiri */
  color: #333;
}

/* Pesan yang dikirim oleh pengguna */
.message.right .content {
  background-color: #dcf8c6; /* Warna hijau muda untuk pesan kanan */
}

/* Waktu pesan */
.time {
  font-size: 10px;
  color: #bbb;
  position: absolute;
  bottom: -18px;
  right: 5px;
}

/* Gaya untuk tombol kirim komentar */
button.comment-button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 20px;
}

/* Tombol kirim komentar saat di hover */
button.comment-button:hover {
  background-color: #1dbf3d;
}/* End custom CSS */