/* Contenedor con esquinas redondeadas y sombra suave */
#umc-chatbot {
    border: 1px solid #e9e9e9;
    border-radius: 16px;           /* <- redondeado */
    overflow: hidden;              /* recorta bordes internos */
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    max-width: 420px;
    margin: 20px auto;
    font-family: Montserrat, sans-serif;
    display: flex;
    flex-direction: column;
    height: 520px;
}

#umc-chatbot .umc-chatbot-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    scroll-behavior: smooth;
}

/* Input con esquinas y pill en botón */
#umc-chatbot .umc-chatbot-input {
    display: flex;
    gap: 8px;
    padding: 10px;
    background: #fff;
}

#umc-chatbot .umc-chatbot-input input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;          /* <- redondeado input */
    font-size: 14px;
    outline: none;
}

#umc-chatbot .umc-chatbot-input input:focus {
    border-color: #DE0121;
    box-shadow: 0 0 0 3px rgba(222, 1, 33, .1);
}

#umc-chatbot .umc-chatbot-input button {
    padding: 10px 14px;
    background: #DE0121;
    color: #fff;
    border: none;
    border-radius: 9999px;        /* <- botón estilo pastilla */
    cursor: pointer;
    font-size: 14px;
    transition: transform .06s ease, background .2s ease;
}

#umc-chatbot .umc-chatbot-input button:hover {
    background: #b80e1a;
}
#umc-chatbot .umc-chatbot-input button:active {
    transform: translateY(1px);
}

/* Mensajes con burbujas redondeadas */
#umc-chatbot .bot-message {
    background: #fffafa;          /* rojo pastel muy suave */
    padding: 10px 12px;
    margin: 8px 0;
    border-radius: 12px;
    color: #1a1a1a;
}

#umc-chatbot .user-message {
    background: #f9dfe3;
    padding: 10px 12px;
    margin: 8px 0 8px auto;       /* se pega a la derecha */
    border-radius: 12px;
    color: #1a1a1a;
    max-width: 90%;
    text-align: right;
}

#umc-chatbot .umc-prod-thumb{
  width:120px;height:120px;object-fit:cover;border-radius:10px;border:1px solid #eee;display:block;margin:6px 0 8px 0;
}
