/* Minimal styles for the customer chat widget */
.cw-panel{width:360px;max-height:70vh;background:#fff;border-radius:12px;overflow:hidden;display:flex;flex-direction:column;border:1px solid rgba(0,0,0,.08);animation:cwIn .2s ease-out}
.cw-panel.cw-minimized{height:64px;max-height:64px}
.cw-header{padding:8px 10px;background:#f8f9fa;border-bottom:1px solid rgba(0,0,0,.06)}
.cw-body{max-height:60vh;overflow:auto}
.cw-chat{width:360px;max-height:70vh;background:#fff}
.cw-messages{overflow:auto;min-height:200px;max-height:50vh;background:#fafafa;border-bottom:1px solid rgba(0,0,0,.06)}
.cw-input textarea{resize:vertical}
@media (max-width: 576px){
  .cw-panel,.cw-chat{width:95vw}
}
@keyframes cwIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}

/* Optional dark mode (prefers-color-scheme) */
@media (prefers-color-scheme: dark){
  .cw-panel,.cw-chat{background:#1f1f1f;color:#f2f2f2;border-color:rgba(255,255,255,.08)}
  .cw-header{background:#2a2a2a;border-color:rgba(255,255,255,.06)}
  .cw-messages{background:#151515;border-color:rgba(255,255,255,.06)}
}

