/* /assets/css/chat.css — Estilos ligeros para el chat */
.chat-page{max-width:900px;margin:0 auto; padding-bottom:70px}
.chat-rooms{display:flex;gap:.4rem;flex-wrap:wrap}
.chat-room-btn{appearance:none;border:1px solid #ddd;background:#fff;color:#333;padding:.35rem .6rem;border-radius:.6rem;cursor:pointer}
.chat-room-btn.active{border-color:#6b5b4b;background:#f5efe9;color:#2b241f;font-weight:700}
.chat-box{border:1px solid #e7e1da;background:#fff;border-radius:.8rem;min-height:280px;max-height:52vh;overflow:auto;padding:.6rem;-webkit-overflow-scrolling:touch}
.chat-form{position:sticky;bottom:0;background:#fff;border-top:1px solid #eee;padding:.5rem .1rem}
.chat-input-row{display:flex;gap:.5rem;align-items:center;flex-wrap:wrap}
.chat-input-main{display:block}
.chat-input-main input[type="text"]{width:100%;border:1px solid #ccc;border-radius:.6rem;padding:.6rem .8rem}
.chat-input-controls{display:flex;justify-content:space-between;align-items:center;gap:.6rem;margin-top:.35rem}
.chat-input-controls .controls-left{display:flex;gap:.4rem;align-items:center}
.chat-input-controls .controls-right{display:flex;align-items:center}
.chat-input-row .icon-btn,.chat-input-controls .icon-btn{border:1px solid #ddd;background:#fff;color:#333;border-radius:.6rem;padding:.35rem .45rem;cursor:pointer}
.chat-input-row .icon-btn:hover,.chat-input-controls .icon-btn:hover{background:#f7f4ef}
.chat-input-row .icon-btn, .chat-input-controls .icon-btn, .chat-input-controls .btn.btn-primary, .chat-input-main input[type="text"]{height:42px}
.chat-input-controls .btn.btn-primary{display:inline-flex;align-items:center;justify-content:center;padding:.45rem .8rem}
.chat-photo-preview img{max-height:120px;border-radius:.6rem}
.chat-photo-preview .chip{display:inline-flex;align-items:center;gap:.35rem;border:1px solid #ddd;background:#fff;border-radius:.6rem;padding:.25rem .45rem}
.chat-photo-preview .chip button{border:0;background:transparent;cursor:pointer}
.chat-emoji-panel{position:absolute;bottom:3.2rem;right:1rem;background:#fff;border:1px solid #ddd;border-radius:.6rem;box-shadow:0 10px 30px rgba(0,0,0,.15);padding:.35rem;display:none;gap:.15rem;flex-wrap:wrap;max-width:240px;z-index:30}
.chat-emoji-panel button{border:0;background:transparent;font-size:1.1rem;cursor:pointer;line-height:1.2}
.chat-img{max-width:100%;border-radius:.6rem;display:block}
.chat-message{display:flex;gap:.5rem;margin:.35rem 0}
.chat-avatar{width:32px;height:32px;border-radius:50%;background:#d6cfc8;color:#2b241f;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem;flex:0 0 32px;overflow:hidden}
.chat-bubble{background:#f7f4ef;border:1px solid #e9e2da;border-radius:.7rem;padding:.4rem .55rem;flex:1}
.chat-message-header{display:flex;align-items:center;gap:.5rem;color:#665c51;font-size:.8rem;margin-bottom:.15rem}
.chat-message-header .chat-reply{margin-left:auto; border:1px solid #d6cec6; background:#fff; color:#6b5b4b; border-radius:.4rem; padding:.05rem .35rem; cursor:pointer; font-weight:700}
.chat-message-header .chat-reply:hover{background:#f5efe9}
.chat-text .mention{color:#1565c0; font-weight:600}
.chat-date-sep{position:relative;text-align:center;margin:.6rem 0;color:#857a6d;font-size:.75rem}
.chat-date-sep::before,.chat-date-sep::after{content:"";display:inline-block;width:22%;height:1px;background:#e1d9cf;vertical-align:middle;margin:0 .6rem}
.chat-load-more{display:block;width:100%;border:1px dashed #c8bfb6;background:#fff;padding:.4rem;border-radius:.6rem;color:#6b5b4b;cursor:pointer}
.chat-status{font-size:.8rem;color:#857a6d;margin:.25rem 0}
@media (max-width:600px){
  .chat-box{max-height:60vh}
  .chat-avatar{width:28px;height:28px;font-size:.8rem}
  .chat-bubble{padding:.35rem .5rem}
  .chat-input-controls{
    flex-wrap:wrap;
    align-items:flex-start;
    gap:.4rem;
  }
  .chat-input-controls .controls-right{
    margin-left:auto;
  }
  .chat-input-controls .btn.btn-primary{
    padding:.4rem .8rem;
    min-width:90px;
  }
  .chat-input-controls .icon-btn{padding:.35rem .4rem}
  .chat-emoji-panel{right:.25rem;left:.25rem;max-width:none}
}
@media (max-width:380px){
  .chat-room-btn{padding:.3rem .5rem}
  .chat-input-row input[type="text"]{min-width: 140px}
}
/* Mejoras de legibilidad y líneas largas */
.chat-text{word-break:break-word; overflow-wrap:anywhere}
