/* Minimal floating chat styles tailored to UsaveMe */
.usm-chatbox{position:fixed;right:18px;bottom:18px;z-index:9998;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial;}
.usm-chat-toggle{background:#111;color:#fff;border:0;border-radius:999px;padding:.7rem 1rem;box-shadow:0 8px 25px rgba(0,0,0,.2);cursor:pointer;display:flex;align-items:center;gap:.5rem;}
.usm-chat-dot{width:10px;height:10px;border-radius:50%;background:#ff4d4f;display:inline-block;box-shadow:0 0 0 3px rgba(255,77,79,.2);}
.usm-chat-panel{position:fixed;right:18px;bottom:76px;width:320px;max-width:96vw;background:#fff;border-radius:16px;box-shadow:0 18px 40px rgba(0,0,0,.22);overflow:hidden;transform-origin:bottom right;transform:scale(.96);opacity:0;pointer-events:none;transition:.18s ease;z-index:9999;}
.usm-chat-panel[aria-hidden="false"]{transform:scale(1);opacity:1;pointer-events:auto;}
.usm-chat-header{display:flex;justify-content:space-between;align-items:center;padding:.8rem 1rem;background:#111;color:#fff;}
.usm-chat-close{background:transparent;border:0;color:#fff;font-size:20px;cursor:pointer;line-height:1;}
.usm-chat-body{padding:1rem;}
.usm-chat-welcome{margin:0 0 .75rem;font-weight:600;}
.usm-chat-form .usm-row{display:flex;gap:.5rem;margin-bottom:.5rem;}
.usm-chat-form input,.usm-chat-form textarea{width:100%;padding:.65rem;border-radius:10px;border:1px solid #e5e7eb;background:#fafafa;font-size:14px;}
.usm-chat-form textarea{min-height:120px;resize:vertical;}
.usm-send{display:inline-block;margin-top:.5rem;background:#111;color:#fff;border:0;border-radius:10px;padding:.6rem 1rem;cursor:pointer;}
.usm-chat-note{margin-top:.5rem;font-size:.9rem;color:#444;}
