diff --git a/conversations.php b/conversations.php
index 586ccad..b391840 100644
--- a/conversations.php
+++ b/conversations.php
@@ -428,6 +428,33 @@
.notification-toast .nt-actions { margin-left: auto; display:flex; gap:6px; }
.notification-toast .btn { font-size: 12px; padding: 4px 8px; }
+ /* UI improvements for chat area */
+ .quick-replies .btn {
+ border-radius: 20px;
+ padding: 6px 10px;
+ font-size: 12px;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
+
+ .chat-conversations {
+ background-repeat: repeat;
+ background-color: #e9efe9;
+ padding-bottom: 20px; /* space for reply preview and input */
+ }
+
+ .message-bubble { transition: transform 0.12s ease, box-shadow 0.12s ease; }
+ .message-bubble:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.06); }
+
+ #reply-preview { box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
+ #reply-preview button { border: none; color: #888; }
+ #reply-preview button:hover { color: #333; }
+
+ .message.incoming .message-bubble::before,
+ .message.outgoing .message-bubble::after { content: ''; }
+
+
.notification-toast.urgent { border-left: 4px solid #e74c3c; }
.message-template {
@@ -593,6 +620,11 @@
+
+
En respuesta a: (selecciona un mensaje)
+
+
+