/* Minimal styles for the chat widget */
.slc-widget { position: fixed; right: 20px; bottom: 20px; z-index: 99999; font-family: system-ui,Arial,Helvetica,sans-serif; }
.slc-toggle { background:#2b6cb0; color:#fff; padding:10px 14px; border-radius:24px; border:none; cursor:pointer; box-shadow:0 6px 20px rgba(0,0,0,0.15); }
.slc-panel { width:320px; max-width:90vw; height:420px; background:#fff; border-radius:8px; box-shadow:0 10px 30px rgba(0,0,0,0.15); display:flex; flex-direction:column; overflow:hidden; margin-top:10px; }
.slc-messages { flex:1; padding:12px; overflow:auto; background:#f7fafc; }
.slc-form { padding:8px; border-top:1px solid #eee; display:flex; flex-direction:column; gap:6px; }
.slc-form input, .slc-form textarea { width:100%; padding:8px; border:1px solid #ddd; border-radius:6px; }
.slc-send { background:#38a169; color:#fff; padding:8px 10px; border:none; border-radius:6px; cursor:pointer; }
.slc-msg { margin-bottom:10px; padding:8px; background:#fff; border-radius:6px; border:1px solid #eee; }
.slc-msg-body { margin-top:6px; white-space:pre-wrap; }