#speziale-chatbot-widget { position: fixed; bottom: 0; right: 20px; z-index: 999999; font-family: sans-serif; display: flex; flex-direction: column; align-items: flex-end; }
#speziale-chat-bubble { background: #1a1a1a; width: 75px; height: 75px; border-radius: 30px 30px 0 0; border: 1px solid rgba(255, 255, 255, 0.5); border-bottom: none; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-top: 0; }
.speziale-eye-container { display: flex; gap: 10px; }
.speziale-eye { width: 14px; height: 16px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; animation: blink 5s infinite; }
.speziale-pupil { width: 6px; height: 6px; background: #1a1a1a; border-radius: 50%; position: absolute; transition: transform 0.2s ease-out; }
@keyframes blink { 0%, 93%, 100% { transform: scaleY(1); } 96% { transform: scaleY(0.1); } }
#speziale-chat-window { width: 350px; max-width: 90vw; background: #1e1e1e; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); overflow: hidden; display: none; flex-direction: column; border: 1px solid #333; max-height: 70vh; color: white; }
#speziale-chat-header { background: #0a0a0a; color: white; padding: 12px 18px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #2a2a2a; }
#speziale-close-btn { background: none; border: none; color: white; font-size: 28px; cursor: pointer; }
#speziale-chat-box { flex-grow: 1; height: 350px; overflow-y: auto; padding: 18px; font-size: 14px; line-height: 1.5; display: flex; flex-direction: column; }

/* --- NUEVOS ESTILOS PARA LOS GLOBOS DE CHAT --- */
.msg-row { display: flex; width: 100%; margin-bottom: 15px; flex-direction: column; }
.msg-row.user { align-items: flex-end; }
.msg-row.bot { align-items: flex-start; }
.msg-sender { font-size: 11px; font-weight: bold; margin-bottom: 4px; opacity: 0.6; color: #aaa; }
.chat-bubble { padding: 10px 14px; border-radius: 12px; max-width: 85%; word-wrap: break-word; }
.msg-row.user .chat-bubble { background: #333; color: white; border-bottom-right-radius: 2px; }
.msg-row.bot .chat-bubble { background: #0a0a0a; color: white; border-bottom-left-radius: 2px; border: 1px solid #2a2a2a; }
/* ---------------------------------------------- */

#speziale-chat-input-area { display: flex; padding: 12px; border-top: 1px solid #333; background: #1e1e1e; }
#speziale-user-input { flex: 1; padding: 10px; border: 1px solid #444; border-radius: 8px; font-size: 16px; background: #2a2a2a; color: white; }
#speziale-user-input::placeholder { color: #888; }
#speziale-send-btn { margin-left: 8px; padding: 0 15px; background: #fff; color: #0a0a0a; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; }

/* --- BOTONES DE SUGERENCIAS RÁPIDAS --- */
#speziale-quick-buttons { display: flex; gap: 8px; padding: 0 12px 10px 12px; flex-wrap: wrap; }
.sam-quick-btn { background: #333; border: 1px solid #444; padding: 6px 12px; border-radius: 15px; font-size: 12px; cursor: pointer; color: #ddd; transition: background 0.2s, color 0.2s; }
.sam-quick-btn:hover { background: #fff; color: #0a0a0a; }
@media (max-width: 600px) { 
    #speziale-chat-window { max-height: 75dvh; width: calc(100vw - 20px); } 
    #speziale-chat-box { font-size: 13px; padding: 12px; }
    #speziale-chat-window.is-typing { max-height: 40dvh; } 
}
@media (max-width: 768px) {
    #speziale-chatbot-widget {
        bottom: 0 !important;
        right: 2% !important;
        width: 20% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    #speziale-chat-bubble {
        width: 100% !important;
        height: 75px !important;
        border-radius: 30px 30px 0 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    #speziale-chat-window {
        bottom: 75px !important;
        position: absolute !important;
        right: 0 !important;
    }
}
