#holychat-widget{position:fixed;right:22px;bottom:22px;z-index:99999;font-family:inherit}.holychat-bubble{touch-action:none;user-select:none;width:62px;height:62px;border-radius:50%;border:1px solid rgba(34,211,238,.65);background:linear-gradient(135deg,#0f172a,#0e7490);color:#fff;font-size:1.8rem;box-shadow:0 0 28px rgba(34,211,238,.42);cursor:grab}.holychat-bubble:active{cursor:grabbing}.holychat-unread{position:absolute;right:-4px;top:-4px;min-width:22px;height:22px;border-radius:999px;background:#ef4444;color:white;font-size:.75rem;font-weight:800;display:grid;place-items:center}.holychat-panel{width:360px;height:520px;display:flex;flex-direction:column;border:1px solid rgba(34,211,238,.45);border-radius:20px;background:linear-gradient(160deg,rgba(2,6,23,.97),rgba(8,47,73,.96));box-shadow:0 20px 70px rgba(0,0,0,.5),0 0 30px rgba(34,211,238,.18);overflow:hidden}.minimized .holychat-panel{display:none}.minimized .holychat-bubble{display:block}#holychat-widget:not(.minimized) .holychat-bubble{display:none}.holychat-header{height:58px;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border-bottom:1px solid rgba(34,211,238,.22);cursor:move;color:#e0f2fe}.holychat-header strong{display:block;color:#67e8f9}.holychat-header span{font-size:.8rem;color:#bae6fd}.holychat-actions{display:flex;gap:7px}.holychat-actions button{width:30px;height:30px;border-radius:10px;border:1px solid rgba(148,163,184,.32);background:rgba(15,23,42,.65);color:#e0f2fe;cursor:pointer}.holychat-messages{flex:1;overflow:auto;padding:14px}.holychat-input-wrap{padding:12px;border-top:1px solid rgba(34,211,238,.22)}.holychat-form{display:flex;gap:8px;align-items:center}.holychat-form input{flex:1;min-width:0;border:1px solid rgba(34,211,238,.25);border-radius:14px;background:rgba(15,23,42,.86);color:#fff;padding:12px 13px;outline:none}.holychat-form button{width:46px;height:43px;border-radius:14px;border:0;background:linear-gradient(135deg,#22d3ee,#0ea5e9);color:#02111f;font-weight:900;cursor:pointer}.holychat-attach{background:rgba(15,23,42,.8)!important;color:#e0f2fe!important;border:1px solid rgba(34,211,238,.35)!important}.holychat-login-required,.holychat-loading,.holychat-empty{color:#bae6fd;text-align:center;font-size:.9rem}.holychat-message.discord .chat-user-name{color:#c084fc!important}.holychat-attachments{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}.holychat-attachments img{max-width:180px;max-height:130px;border-radius:12px;border:1px solid rgba(148,163,184,.28)}.holychat-file{display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border-radius:10px;background:rgba(30,41,59,.85);color:#bae6fd;text-decoration:none;border:1px solid rgba(148,163,184,.22)}.holychat-preview{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:9px}.holychat-preview[hidden]{display:none}.holychat-preview-item{display:flex;align-items:center;gap:7px;max-width:100%;padding:6px 8px;border-radius:12px;background:rgba(15,23,42,.76);border:1px solid rgba(34,211,238,.22);color:#dbeafe;font-size:.78rem}.holychat-preview-item img{width:42px;height:42px;object-fit:cover;border-radius:9px}.holychat-preview-name{max-width:190px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.holychat-preview-item button{width:24px!important;height:24px!important;border-radius:999px!important;background:rgba(239,68,68,.18)!important;color:#fecaca!important;border:1px solid rgba(239,68,68,.35)!important}.holychat-file-icon{font-size:1.1rem}.holychat-drop-active{outline:2px dashed rgba(34,211,238,.75);outline-offset:-8px}.holychat-dragging{user-select:none;cursor:grabbing!important}@media(max-width:520px){#holychat-widget{right:12px;bottom:12px}.holychat-panel{width:calc(100vw - 24px);height:70vh}.holychat-preview-name{max-width:120px}}
.holychat-media-player{display:block;width:100%;max-width:260px;max-height:180px;border-radius:12px;background:#020617;border:1px solid rgba(148,163,184,.28)}
.holychat-audio-player{display:block;width:260px;max-width:100%;height:38px}


/* Estado de envío: evita dobles clics y muestra actividad */
#holychat-send:disabled,
.holychat-form button[type="submit"]:disabled {
    opacity: .58;
    cursor: wait;
    pointer-events: none;
    filter: saturate(.65);
}

.holychat-form.holychat-is-sending {
    cursor: wait;
}

.holychat-form.holychat-is-sending input,
.holychat-form input[readonly][aria-busy="true"] {
    opacity: .72;
    cursor: wait;
}

#holychat-send[aria-busy="true"] {
    animation: holychat-send-pulse .85s ease-in-out infinite alternate;
}

@keyframes holychat-send-pulse {
    from { transform: scale(.96); }
    to   { transform: scale(1.04); }
}
