/**
 * Booking message thread — messenger layout for customer + manager.
 */
.pr-chat-scroll {
  background: #f6f3f9;
}
.pr-chat {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem 0.9rem;
}
.pr-chat-empty {
  margin: 1.25rem 0;
  text-align: center;
  color: #6b6278;
}
.pr-chat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}
.pr-chat-filter .btn {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  line-height: 1.35;
}
.pr-chat-row {
  display: flex;
  width: 100%;
}
.pr-chat-row.is-them {
  justify-content: flex-start;
}
.pr-chat-row.is-me {
  justify-content: flex-end;
}
.pr-chat-bubble {
  max-width: 78%;
  padding: 0.45rem 0.75rem 0.4rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  box-shadow: 0 1px 2px rgba(20, 10, 34, 0.08);
}
.pr-chat-row.is-them .pr-chat-bubble {
  background: #fff;
  color: #1a1228;
  border: 1px solid rgba(75, 43, 142, 0.12);
  border-radius: 16px 16px 16px 4px;
}
.pr-chat-row.is-me .pr-chat-bubble {
  background: linear-gradient(180deg, var(--partyryde-pink-top, #ff4066) 0%, var(--partyryde-pink-bottom, #a6206a) 100%);
  color: #fff;
  border-radius: 16px 16px 4px 16px;
}
.pr-chat-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.12rem;
  opacity: 0.78;
}
.pr-chat-body {
  font-size: 0.9rem;
  white-space: pre-wrap;
}
.pr-chat-date {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  opacity: 0.72;
}
.pr-chat-row.is-me .pr-chat-date {
  text-align: right;
}
.pr-chat-sys {
  width: 100%;
  margin: 0.15rem 0;
  padding: 0.55rem 0.75rem;
  text-align: center;
  background: rgba(75, 43, 142, 0.07);
  border: 1px dashed rgba(75, 43, 142, 0.28);
  border-radius: 10px;
  color: #4d4560;
}
.pr-chat-sys-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b4ea3;
  margin-bottom: 0.2rem;
}
.pr-chat-sys-kind::before {
  content: " - ";
  font-weight: 700;
}
.pr-chat-sys-body {
  font-size: 0.8125rem;
  line-height: 1.4;
  white-space: pre-wrap;
}
.pr-chat-sys-date {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  color: #7a7388;
}
