/* === ICONO FLOTANTE === */
#talksy-icon {
  position: fixed; bottom:20px; right:20px;
  width:60px; height:60px;
  cursor:pointer; z-index:9999;
  border-radius:50%; box-shadow:0 2px 6px rgba(0,0,0,0.3);
}
#talksy-icon img {
  width:100%; height:100%; object-fit:contain; border-radius:50%;
}

/* === VENTANA === */
#talksy-chat {
  position:fixed; bottom:90px; right:20px;
  width:300px; max-height:500px;
  background:#fff; border:2px solid #003399;
  border-radius:8px; display:flex; flex-direction:column;
  box-shadow:0 8px 20px rgba(0,0,0,0.2); font-family:Arial,sans-serif;
  z-index:9999; overflow:hidden;
}
.talksy-hidden { display:none; }

/* HEADER */
#talksy-header {
  display:flex; align-items:center;
  background:#0055aa; color:#fff; padding:8px;
}
#talksy-header img#talksy-logo {
  width:28px; height:28px; margin-right:8px;
}
.talksy-title {
  flex:1; font-size:14px; font-weight:bold;
}
#talksy-minimize {
  background:transparent; border:none;
  color:#fff; font-size:18px; cursor:pointer;
}

/* MENSAJES */
#talksy-messages {
  flex:1; padding:10px; overflow-y:auto;
  background:#f5f7fa; font-size:13px; line-height:1.4;
}
#talksy-messages p { margin:6px 0; }
.talksy-user { text-align:right; }
.talksy-bot  { text-align:left; }

/* INPUT */
#talksy-input-box {
  display:flex; align-items:center;
  border-top:1px solid #ddd; padding:8px;
}
#talksy-input {
  flex:1; padding:6px; border:1px solid #ccc; border-radius:4px;
  font-size:14px; outline:none;
}
#talksy-send {
  margin-left:6px; padding:6px 12px;
  background:#003399; color:#fff; border:none; border-radius:4px;
  cursor:pointer; font-size:14px;
}
#talksy-send:hover { background:#002966; }

/* FORZAR TAMAÑOS */
#talksy-icon, #talksy-icon img { width:60px!important; height:60px!important; }
#talksy-logo { width:28px!important; height:28px!important; object-fit:contain; }
