@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

#mrpuppy-invitacion {
    display: none;
    position: fixed;
    bottom: 95px;
    right: 20px;
    background: #eaf2ff;
    border-radius: 20px 20px 4px 20px;
    align-items: center;
    padding: 8px 18px 8px 4px;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    cursor: pointer;
    z-index: 99998;
    max-width: 270px;
}
#mrpuppy-invitacion.mrpuppy-mostrar {
    display: flex;
}
#mrpuppy-invitacion img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    margin-right: 6px;
    flex-shrink: 0;
}
#mrpuppy-invitacion span {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #3d72d9;
    line-height: 1.15;
}

#mrpuppy-burbuja {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #4a7fd6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    z-index: 99999;
    overflow: hidden;
}
#mrpuppy-burbuja img { width: 100%; height: 100%; object-fit: cover; }

#mrpuppy-ventana {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-width: 90vw;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 99999;
    font-family: Arial, sans-serif;
}

#mrpuppy-header {
    background: #4a7fd6;
    color: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}
#mrpuppy-header img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
#mrpuppy-header span:first-of-type { flex: 1; }
#mrpuppy-cerrar { cursor: pointer; font-size: 20px; }

#mrpuppy-mensajes {
    padding: 12px;
    height: 260px;
    overflow-y: auto;
    background: #f5f6f8;
}

.mrpuppy-msg {
    padding: 8px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.3;
    word-wrap: break-word;
}
.mrpuppy-msg.mrpuppy-admin {
    background: #fff;
    border: 1px solid #e0e0e0;
    float: left;
    clear: both;
}
.mrpuppy-msg.mrpuppy-cliente {
    background: #4a7fd6;
    color: #fff;
    float: right;
    clear: both;
}

#mrpuppy-nombre-wrap {
    padding: 6px 12px;
    background: #fff;
    border-top: 1px solid #eee;
}
#mrpuppy-nombre {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 6px 10px;
    font-size: 12px;
    box-sizing: border-box;
}

#mrpuppy-input-wrap {
    display: flex;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #eee;
    gap: 8px;
}
#mrpuppy-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 8px 14px;
    font-size: 14px;
}
#mrpuppy-enviar {
    background: #4a7fd6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
}