#wishes-chat-container {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}
#wishes-chat-container::-webkit-scrollbar {
  display: none;
}
.chat-bubble {
  padding: 10px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
  position: relative;
}
.chat-bubble-title .chat-bubble-author {
  font-size: 0.9rem !important;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  color: var(--tblr-primary, #236871);
}
.chat-bubble-title .chat-bubble-date {
  font-size: 0.7rem !important;
  color: var(--tblr-secondary, #6b7280);
}
.chat-bubble-body p {
  font-size: 0.9rem !important;
  color: #333;
  margin-bottom: 0;
  font-family: 'Marcellus', serif;
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9f0fb;
  color: #236871;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 2px 8px #23687122;
  margin-right: 6px;
}
.btn-reply {
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  color: #236871;
  transition: color 0.2s;
}
.btn-reply:hover {
  color: #5081A2;
}
@media (max-width: 600px) {
  .chat-item.ms-5 { margin-left: 1.2rem !important; }
  .avatar { width: 28px; height: 28px; font-size: 0.9rem; }
  .chat-bubble { padding: 8px; }
} 