/**
 * @fileoverview Chat Hub styling for WhatsApp module.
 * @layer ui-runtime
 * @used-by core/render/ejs/layouts/app.ejs
 * @depends-on bootstrap
 */
/* لماذا: تنسيق واجهة المحادثة لتكون واضحة وسهلة القراءة. */
.chat-hub-modal .modal-body {
  background: #f8f9fb;
}

.chat-hub-panel {
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.chat-hub-messages {
  height: 320px;
  overflow-y: auto;
  padding: 12px;
  background: #f1f5f9;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.chat-hub-bubble {
  max-width: 75%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.chat-hub-bubble.me {
  margin-left: auto;
  background: #dcfce7;
  border-color: #86efac;
}

.chat-hub-bubble.them {
  margin-right: auto;
}

.chat-hub-meta {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.chat-hub-body {
  font-size: 14px;
  color: #0f172a;
  white-space: pre-wrap;
}

.chat-hub-controls .form-label {
  font-weight: 600;
}

.chat-hub-type-fields {
  background: #f8fafc;
  border: 1px dashed #cbd5f5;
  border-radius: 10px;
  padding: 12px;
}

.chat-hub-realtime {
  font-size: 12px;
  color: #0f766e;
}

.chat-hub-status {
  font-size: 12px;
}

.chat-hub-status.text-success {
  color: #15803d;
}

.chat-hub-status.text-warning {
  color: #b45309;
}

.chat-hub-status.text-danger {
  color: #b91c1c;
}

/* لماذا: دعم الوضع الداكن للمحادثات. */
[data-bs-theme="dark"] .chat-hub-modal .modal-body {
  background: #0f172a;
}

[data-bs-theme="dark"] .chat-hub-panel {
  background: #0b1220;
  border-color: #1f2a44;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

[data-bs-theme="dark"] .chat-hub-messages {
  background: #111827;
  border-color: #1f2937;
}

[data-bs-theme="dark"] .chat-hub-bubble {
  background: #0f172a;
  border-color: #1f2937;
}

[data-bs-theme="dark"] .chat-hub-bubble.me {
  background: #14532d;
  border-color: #166534;
}

[data-bs-theme="dark"] .chat-hub-meta {
  color: #94a3b8;
}

[data-bs-theme="dark"] .chat-hub-body {
  color: #e2e8f0;
}

[data-bs-theme="dark"] .chat-hub-type-fields {
  background: #0b1220;
  border-color: #334155;
}

[data-bs-theme="dark"] .chat-hub-realtime {
  color: #5eead4;
}

[data-bs-theme="dark"] .chat-hub-status.text-success {
  color: #4ade80;
}

[data-bs-theme="dark"] .chat-hub-status.text-warning {
  color: #fbbf24;
}

[data-bs-theme="dark"] .chat-hub-status.text-danger {
  color: #f87171;
}

/* لماذا: توحيد ستايل نوافذ الـ Bootbox في المركز. */
.chat-hub-dialog .modal-content {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

[data-bs-theme="dark"] .chat-hub-dialog .modal-content {
  background: #0f172a;
  color: #e2e8f0;
  border-color: #1f2937;
}

[data-bs-theme="dark"] .chat-hub-dialog .modal-header {
  border-bottom-color: #1f2937;
}

[data-bs-theme="dark"] .chat-hub-dialog .modal-footer {
  border-top-color: #1f2937;
}

[data-bs-theme="dark"] .chat-hub-dialog .bg-light {
  background: #0b1220 !important;
}

[data-bs-theme="dark"] .chat-hub-dialog .text-muted {
  color: #94a3b8 !important;
}
