.blleads-chat { position: fixed; z-index: 999999; bottom: 20px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; } .blleads-chat--bottom-right { right: 20px; } .blleads-chat--bottom-left { left: 20px; } .blleads-chat__bubble { position: relative; width: 58px; height: 58px; border-radius: 999px; border: none; background: var(--blleads-chat-color, #2563eb); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); transition: transform 0.15s ease; } .blleads-chat__bubble:hover { transform: scale(1.05); } .blleads-chat.is-blinking .blleads-chat__bubble { animation: blleads-chat-blink 1s ease-in-out infinite; } @keyframes blleads-chat-blink { 0%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); } 50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.25); } } .blleads-chat__badge[hidden] { display: none; } .blleads-chat__badge { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: #dc2626; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; line-height: 1; } .blleads-chat__panel { position: absolute; bottom: 72px; width: 340px; max-width: calc(100vw - 32px); height: 460px; max-height: calc(100vh - 120px); background: #fff; border-radius: 16px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22); display: flex; flex-direction: column; overflow: hidden; } .blleads-chat__panel[hidden] { display: none; } .blleads-chat--bottom-right .blleads-chat__panel { right: 0; } .blleads-chat--bottom-left .blleads-chat__panel { left: 0; } .blleads-chat__header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--blleads-chat-color, #2563eb); color: #fff; } .blleads-chat__header strong { font-size: 14px; } .blleads-chat__close { background: none; border: none; color: #fff; font-size: 20px; line-height: 1; cursor: pointer; padding: 0 4px; } .blleads-chat__log { flex: 1; min-height: 0; overflow-y: auto; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; background: #f8fafc; } .blleads-chat__msg { max-width: 85%; } .blleads-chat__msg--visitor { align-self: flex-end; } .blleads-chat__msg--ai, .blleads-chat__msg--admin, .blleads-chat__msg--system { align-self: flex-start; } .blleads-chat__msg-name { font-size: 10px; font-weight: 700; color: #94a3b8; margin-bottom: 2px; padding: 0 2px; } .blleads-chat__msg-body { padding: 8px 12px; border-radius: 12px; font-size: 13px; line-height: 1.45; word-break: break-word; } .blleads-chat__msg--visitor .blleads-chat__msg-body { background: var(--blleads-chat-color, #2563eb); color: #fff; border-bottom-right-radius: 2px; } .blleads-chat__file-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; margin-top: 4px; border-radius: 10px; font-size: 12px; text-decoration: none; background: #fff; color: #111827; border: 1px solid #e5e7eb; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .blleads-chat__msg--visitor .blleads-chat__file-chip { background: rgba(255, 255, 255, 0.15); color: #fff; border-color: transparent; } .blleads-chat__file-chip:hover { filter: brightness(0.95); } .blleads-chat__msg--ai .blleads-chat__msg-body, .blleads-chat__msg--admin .blleads-chat__msg-body { background: #fff; color: #111827; border: 1px solid #e5e7eb; border-bottom-left-radius: 2px; } .blleads-chat__msg--system .blleads-chat__msg-body { background: transparent; color: #64748b; font-size: 12px; font-style: italic; padding: 4px 0; } .blleads-chat a { color: var(--blleads-chat-color, #2563eb); } .blleads-chat a:hover { filter: brightness(0.85); } .blleads-chat__capture { padding: 10px 14px; border-top: 1px solid #e5e7eb; display: flex; flex-direction: column; gap: 6px; background: #fff; } .blleads-chat__capture[hidden] { display: none; } .blleads-chat__field { padding: 7px 10px; border: 1px solid #e5e7eb; border-radius: 8px; font-size: 13px; } .blleads-chat__consent { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #64748b; } .blleads-chat__consent input[type=checkbox] { flex-shrink: 0; } .blleads-chat__consent.is-error { color: #dc2626; } .blleads-chat__capture-submit { padding: 8px; border: none; border-radius: 8px; background: var(--blleads-chat-color, #2563eb); color: #fff; font-size: 13px; cursor: pointer; } .blleads-chat__form { display: flex; align-items: flex-end; gap: 6px; padding: 10px; border-top: 1px solid #e5e7eb; background: #fff; } .blleads-chat__input { flex: 1; resize: none; border: 1px solid #e5e7eb; border-radius: 10px; padding: 8px 10px; font-size: 13px; font-family: inherit; max-height: 80px; } .blleads-chat__send, .blleads-chat__leave-btn { border: none; background: #f3f4f6; border-radius: 10px; width: 36px; height: 36px; cursor: pointer; font-size: 15px; flex-shrink: 0; } .blleads-chat__send { background: var(--blleads-chat-color, #2563eb); color: #fff; } @media (prefers-color-scheme: dark) { .blleads-chat__panel { background: #1e293b; } .blleads-chat__log { background: #0f172a; } .blleads-chat__msg--ai .blleads-chat__msg-body, .blleads-chat__msg--admin .blleads-chat__msg-body { background: #1e293b; color: #e2e8f0; border-color: #334155; } .blleads-chat__capture, .blleads-chat__form { background: #1e293b; border-color: #334155; } .blleads-chat__field, .blleads-chat__input { background: #0f172a; border-color: #334155; color: #e2e8f0; } } @media (max-width: 600px) { .blleads-chat__field, .blleads-chat__input { font-size: 16px; } }