/* BACKGROUND */
.imessage-area {
  width: 320px; /* 🔥 telefon genişliği */
  margin: 40px auto;
  padding: 20px 10px;
  background: #f2f2f7;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ROW */
.row {
  display: flex;
  padding: 0 10px;
}

.row.left { justify-content: flex-start; }
.row.right { justify-content: flex-end; }

/* MESSAGE */
.msg {
  position: relative;
  max-width: 75%;
  padding: 8px 12px;
  font-size: 15px;
  border-radius: 18px;
}

/* COLORS */
.msg.left {
  background: #d1d1d6;
  color: #000;
}

.msg.right {
  background: #007aff;
  color: #fff;
}

/* === iMESSAGE KUYRUK (İNCE + DOĞRU) === */

/* LEFT */
.msg.left::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 14px;
  height: 14px;
  background: #d1d1d6;
  border-bottom-right-radius: 12px;
}

.msg.left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 8px;
  height: 14px;
  background: #f2f2f7; /* ? kesme */
  border-bottom-right-radius: 8px;
}

/* RIGHT */
.msg.right::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -5px;
  width: 14px;
  height: 14px;
  background: #007aff;
  border-bottom-left-radius: 12px;
}

.msg.right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 8px;
  height: 14px;
  background: #f2f2f7; /* ? kesme */
  border-bottom-left-radius: 8px;
}