/* assets/css/style.css */
body.bg-gradient { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); }
.navbar-brand { font-weight: 700; letter-spacing: .4px; }
.stat-card { border-radius: 1rem; }
.chat-box { max-height: 70vh; overflow-y: auto; background:#f8f9fa; padding:1rem; border-radius:1rem; }
.msg { display:flex; margin-bottom:12px; }
.msg.user { justify-content:flex-start; }
.msg.assistant { justify-content:flex-end; }
.bubble { padding:10px 14px; border-radius:12px; }
.msg.user .bubble { background:#fff; border:1px solid #eee; }
.msg.assistant .bubble { background:#e8f0fe; border:1px solid #d2e3fc; }
/* Orders: fix actions cell wrapping + input width */
.actions-cell { white-space: normal !important; min-width: 380px; }
.actions-cell .note-input { min-width: 220px; }
@media (max-width: 768px) {
  .actions-cell { min-width: 260px; }
  .actions-cell .note-input { min-width: 160px; }
}
